touchp

0.1.1 • Public • Published

touchp

Like mkdir -p, but with touch

Install

npm install touchp

Usage

var touchp = require('touchp');
 
touchp('some/path/that/may/not/exist.txt', function(err, alreadyExisted) {
  console.log("File " + (alreadyExisted ? 'already exists' : 'was created'));
});
 
var existedBefore = touchp.sync('some/other/path/that/may/not/exist.txt')

Package Sidebar

Install

npm i touchp

Weekly Downloads

4

Version

0.1.1

License

MIT

Last publish

Collaborators

  • rschmukler