working-directory

0.0.1 • Public • Published

WorkingDirectory

Build Status

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

Dependents (0)

Package Sidebar

Install

npm i working-directory

Weekly Downloads

0

Version

0.0.1

License

BSD 2-Clause

Last publish

Collaborators

  • terribleplan