jayvfs
Version:
virtual file system in node-js
20 lines (17 loc) • 469 B
JavaScript
const jvfs = require('../jvfs');
/*
Creates an empty file in the specified directory.
Returns an empty string if executed.
Throws a 'Could not create file' error.
*/
let touch = function(tarNode) {
if (!tarNode) {
return Error('touch: missing file operand');
}
try {
return jvfs.createFile(tarNode);
} catch (e) {
return 'touch: could not create file \'' + tarNode + '\': ' + e.message;
}
};
module.exports = touch;