-
-
Save gaybro8777/c10cf982ca8a74f08c8f708cd1cd39ee to your computer and use it in GitHub Desktop.
existsSync - Check if a file exist in NodeJS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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