2.0.3 • Published 7 years ago

extendfs v2.0.3

Weekly downloads
20
License
-
Repository
github
Last release
7 years ago

ExtendFS

(DEPRECATED: PLEASE USE ajfs PACKAGE INSTEAD)

A module to extend Node's default File System (fs) module to recursively copy/delete directories with callbacks to notify the caller upon each successful copy/delete of a file or directory and upon completion of the whole process.

Example:

var fs = require("ExtendFS");

var fileExtension = fs.getExtension(filePath);

fs.copyFile(src, dest, onCopy);

fs.copyDir(src, dest, onCopy, onCopyDir, onCopyFile);

fs.deleteDir(dirPath, onDelete, onDeleteDir, onDeleteFile);

fs.createDirs(dirPath, onComplete, onCreateDir);
2.0.3

7 years ago

2.0.2

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.0.1

11 years ago

1.0.0

11 years ago