1.0.5 • Published 7 years ago

utilitynodejs v1.0.5

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

#File utility for node programs

##Test: npm test to try out functionality.

##Usage: Require the module for an instance of utilityFileSystem example 1: write content to file

var utility = require('./utilityFileSystem');
//create few files...
utility.export('./test.txt','content...');
utility.export('./send/test1.txt','content...');

output:

example 2: read folder

//read the files created.
var result = utility.readFolder("./package.json");
var result2 = utility.readFile("test1.txt");

output: ##Methods:

##How to install: npm install utilityFileSystem

##Things to note The logging capability is aware of the process running. For example, if there is an existing logging file, any new instance of fileUtility will append to the existing.

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago