0.0.1 • Published 10 years ago

working-directory v0.0.1

Weekly downloads
2
License
BSD 2-Clause
Repository
github
Last release
10 years ago

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
0.0.1

10 years ago

0.0.0

10 years ago