file-exists-promise

1.0.2 • Public • Published

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

Package Sidebar

Install

npm i file-exists-promise

Weekly Downloads

3,310

Version

1.0.2

License

MIT

Last publish

Collaborators

  • tanhauhau