1.0.0 • Published 7 years ago

enfs-promise v1.0.0

Weekly downloads
3
License
CC-BY-4.0
Repository
github
Last release
7 years ago

Build Status AppVeyor status Codacy Badge Donate

NPM

enfs-promise

Module that add methods and patches to node fs module with promises

enfs stands for Easy Node fs

Description

This module will add many methods to node fs module. This is just the main module that will join many modules of the family of enfs, making it easier to use many of the methods present in each module.

Modules

Methods Added

  • emptyDir
  • emptyDirSync

Usage

enfs is a drop-in replacement for native fs module, you just need to include it instead of the native module.

Use this

    const enfs = require("enfs-promise");

instead of

    const fs = require("fs"); //You don't need to do this anymore

and all the methods from native fs module are available

Errors

All the methods follows the node culture.

  • Async: Every async method returns an Error in the first callback parameter
  • Sync: Every sync method throws an Error.

Additional Methods

emptyDir

  • emptyDir(path, callback)

Remove all items from the directory this method use rimraf, then you can pass wildcards to the path like you do in rimraf

    enfs.emptyDir("/path/to/empty", function(err){
        if(!err) {
            console.log("Directory is empty");
        }
    });

emptyDirSync

  • emptyDirSync(path)

Remove all items from the directory this method use rimraf.sync, then you can pass wildcards to the path like you do in rimraf

    enfs.emptyDirSync("/path/to/empty");
    console.log("Directory is empty");

emptyDirP

  • emptyDirP(path)

Remove all items from the directory this method use rimraf, then you can pass wildcards to the path like you do in rimraf

    enfs.emptyDir("/path/to/empty").then(function(){
        console.log("Directory is empty");
    });

remove

  • remove(path, callback)

Remove an item from the file system this method use rimraf, then you can pass wildcards to the path like you do in rimraf

    enfs.remove("/path/to/empty", function(err){
        if(!err) {
            console.log("Path was deleted.");
        }
    });

removeSync

  • removeSync(path)

Remove an item from the file system this method use rimraf.sync, then you can pass wildcards to the path like you do in rimraf

    enfs.removeSync("/path/to/empty");
    console.log("Item deleted.");

removeP

  • removeP(path)

Remove an item from the file system this method use rimraf, then you can pass wildcards to the path like you do in rimraf

    enfs.remove("/path/to/empty").then(function(){
        console.log("Item deleted.");
    });

Additional methods from sub-modules

License

Creative Commons Attribution 4.0 International License

Copyright (c) 2016 Joao Parreira joaofrparreira@gmail.com GitHub

This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit CC-BY-4.0.