Collection of syncron/asyncron file methods
npm install node-flnode-fl
=======
node-fl is a collection of usefull file methods.
mkdir -p. Folders will be created with 755 file permissions.Example:
``js
//Creates a folder syncronous
fl.mkdir('path/to/folder');
//Creates a folder asyncron
fl.mkdir('path/to/folder', function(err) {
});
``