working-directory
v0.0.1
Published
A library that allows for simpler file manipulation relative to a directory
Downloads
6
Readme
WorkingDirectory
WorkingDirectory is a library that allows for simple file manipulation through creating an instance that all of your file operations can be done relative to. Usage
var WorkingDirectory = require('working-directory');
var wd = new WorkingDirectory(__dirname);
wd.mkdir("someDirectory", function(err, tempdir) {
if (err) throw err;
tempdir.writeFile("file.txt", "File contents", function(err) {
if (err) throw err;
console.log("A file has been written in the temporary directory");
});
});
Notes
This package does not and will not provide the following functionality:
- Synchronous filesystem access