gettemporaryfilepath

1.0.1 • Public • Published

node-gettemporaryfilepath

Generate file names for temporary files:

var getTemporaryFilePath = require('gettemporaryfilepath');
 
getTemporaryFilePath(); // "/tmp/112116-2662-18u8bl8"
getTemporaryFilePath(); // "/tmp/112116-2662-1inp07r"

Creating and cleaning up the temporary files is your own responsibility.

Custom suffixes and prefixes are supported using the same syntax as node-temp (from which most of the code was taken):

getTemporaryFilePath({suffix: '.png'}); // "/tmp/112116-2662-125a83d.png"
getTemporaryFilePath({prefix: 'foo-'}); // "/tmp/foo-112116-2662-avhu28"

Installation

Make sure you have node.js and npm installed, then run:

npm install gettemporaryfilepath

License

Based on node-temp and licensed under the 3-clause BSD license -- see the LICENSE file for details.

Package Sidebar

Install

npm i gettemporaryfilepath

Weekly Downloads

13,621

Version

1.0.1

License

BSD

Unpacked Size

8.24 kB

Total Files

5

Last publish

Collaborators

  • papandreou