Recursively create nested directories with jsftp, like mkdirp
FTP can natively create only one directory at the time.
Useful for being able to upload files to deep paths without knowing if the directories exists beforehand.
Install with npm
npm install --save jsftp-mkdirp
var JSFtp = require('jsftp');
// decorate `JSFtp` with a new method `mkdirp`
JSFtp = require('jsftp-mkdirp')(JSFtp);
var path = 'public_html/deploy/foo/bar';
ftp.mkdirp(path, function (err) {
if (err) {
return cb(err);
}
console.log('Created path:', path);
});
Required
Type: String
Path of the nested directories you want to create.
Type: Function
Default: function () {}
Function to be called when done or error.
MIT © Sindre Sorhus