recursivefolder
v1.0.2
Published
Creates all the folders in the path so that you don't have to manually create them
Downloads
10
Maintainers
Readme
recursivefolder
require
const recursiveFolder = require('recursivefolder');recursiveFolder.create(path);
- Function: Creates all folders in the path using an asynchronus loop in the background(looks like a sync function but it isn't)
- Parameters: a String containing a path
- Returns: nothing
example
recursiveFolder.create('./test1/test2/test3');