rangement/node_modules/node-fs
2023-07-01 12:46:34 +02:00
..
lib add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
test add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
.travis.yml add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
example.js add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
LICENSE add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
package.json add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
README.md add packages and scripts in package.json 2023-07-01 12:46:34 +02:00

node-fs is an extension to the original nodejs fs library, offering new functionalities. See example.js for an example of how to use it.

Right now, the following new operations are supported:

  • mkdir(path, mode, [recursive], [callback]): if the 'recursive' parameter is true, creates a directory recursively;
  • mkdirSync(path, mode, [recursive]): if the 'recursive' parameter is true, synchronously creates a directory recursively.

Build Status