1.0.2 • Published 9 years ago

is-file-global v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

is-file-global Build Status

Check if a file is available globally in PATH

Useful when you need to check if a file (script, executable, etc.) is callable globally.

Install

$ npm install --save is-file-global

Usage

var isFileGlobal = require('is-file-global');

isFileGlobal('where.exe', function(err, path) {
  if (err) {
    throw err;
  }

  console.log(path);
  //=> C:/Windows/system32/where.exe
});

API

isFileGlobal(filename, callback)

filename

Required
Type: string

Name of a script or executable to find e.g. where.exe. Also, you can use patterns to match files, see Glob.

callback

Required
Type: function

Arguments: error, string

Resulting string contains location of the file if found, undefined otherwise.

Support

This module was tested on Windows only.

License

MIT © Peter Sandor