0.1.2 • Published 10 years ago

exfs v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

exfs

convenience extension of fs

Install

npm install exfs

usage

exfs.mkdir(path, mode, callback, createFlag)

Asynchronously make directory if directory isn't exist

When the directory in which new folder will be made is not exist, if createFlag=true, this function make it. if createFlag=false, this function throw an error.

var exfs = require("esfs");
exfs.mkdir("./you/can/make/this/very/very/deep/directory/at/a/time", callback, true);

exfs.writeFile(filename, data, options, callback, createFlag)

Asynchronously writes data to a file

When the directory in which file is made is not exist, if createFlag=true, this function make it. if createFlag=false, this function throw an error.

var exfs = require("esfs");
var path = ("./you/can/make/this/very/very/deep/directory/at/a/time");

exfs.writeFile(path, "Hello World!", callback, true);
0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago