path-directories
v1.0.2
Published
Get all directories contained in a string file path
Downloads
68
Maintainers
Readme
path-directories
Get all directories contained in a string file path
Install
$ npm install --save path-directories
Usage
const dirnames = require('path-directories');
// Windows path - gives [ 'D:', 'DDL', 'ANIME', 'les chevaliers du zodiaques' ]
dirnames("D:\\DDL\\ANIME\\les chevaliers du zodiaques\\whateverFile.avi");
// POSIX path - gives [ 'D:', 'DDL', 'EBOOK' ]
dirnames("D:/DDL/EBOOK/whatEverFile.pub");
API
path-directories(filePath)
Returns all the directories in this string file path.
License
MIT