file-exists-promise

v1.0.1
fs.exists with ES6 Promise that is not deprecated
fs file exists promise es6-promise async

file-exists-promise

Build Status npm version Dependency status Downloads Donate

fs.exists with ES6 Promise that is not deprecated

This is the implementation using fs.statsSync to check whether the file exists instead of the deprecated fs.existsSync.

Installation

$ npm install --save file-exists-promise

Usage

var fileExists = require('file-exists-promise'),
      path = require('path');

      fileExists(path.resolve(__dirname, './file.txt'))
      .then(function(stat){
          console.log('yeah it exists!');
          console.log('and the stat of the file --> ' + stat);
      })
      .catch(function(){
          console.log('oh no... it does not exist');
      });

License

MIT

Metadata

  • MIT
  • Whatever
  • Tan Li Hau
  • released 4/23/2016

Downloads

Maintainers