Skip to content

Instantly share code, notes, and snippets.

@gaybro8777
Forked from FGRibreau/existsSync.js
Created May 24, 2018 10:43
Show Gist options
  • Save gaybro8777/c10cf982ca8a74f08c8f708cd1cd39ee to your computer and use it in GitHub Desktop.
Save gaybro8777/c10cf982ca8a74f08c8f708cd1cd39ee to your computer and use it in GitHub Desktop.
existsSync - Check if a file exist in NodeJS
/*
fileExistSync - Check if a file exist in NodeJS
Twitter: @FGRibreau / fgribreau.com
Usage:
var fileExistSync = require('./fileExistSync');
var exist = fileExistSync('/var/folders/zm/jmjb49l172g6g/T/65b199');
Support for Nodev0.6
*/
var fs = require('fs');
module.exports = fs.existsSync || function existsSync(filePath){
try{
fs.statSync(filePath);
}catch(err){
if(err.code == 'ENOENT') return false;
}
return true;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment