1.0.2 • Published 10 years ago

pstat v1.0.2

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

pStat

npm npm

Check if file or directory exists in Node.JS.

Install

Use NPM to install the package:

npm install pstat

Usage

Include the package using:

var pStat = require('pstat');

pStat.isFile(path, callback)

Asynchronously check if path exists and is a file. The callback is passed with true if path exists and is a file or false if not. Example:

pStat.isFile('./folder/file.txt', function(is_file){ /* do something */ });

pStat.isFileSync(path)

Synchronous version of pStat.isFile. Returns true if path exists and is a file, false if not.

pStat.isDir(path, callback)

Asynchronously check if path exists and is a directory. The callback is passed with true if path exists and is a directory or false if not. Example:

pStat.isDir('./your/folder', function(is_dir){ /* do something */ });

pStat.isDirSync(path)

Synchronous version of pStat.isDir. Returns true if path exists and is a directory, false if not.

License

MIT Jose M. Juanes.