1.1.0 • Published 8 years ago

fs-force-mkdir-sync v1.1.0

Weekly downloads
10
License
MIT
Repository
github
Last release
8 years ago

fs-force-mkdir

Requirements

  • Node >= 6.0.0

Usage

var mkdirSync = require('fs-force-mkdir-sync');
try {
    let info = mkdirSync('./a/b/c');
    console.log('Succeed', info);
} catch (error) {
    console.error('Failed', error);
}

The code above would check for existence of './a', './a/b' and './a/b/c',

  • If one is a directory, mkdir skip this directory and check the next
  • If one doesn't exist, mkdir would creates it as a empty directory
  • If one is a file, mkdir would deletes that file and creates a directory with the same name

License

MIT © Hoàng Văn Khải