node-crond
v1.0.4
Published
Schedule deleting all file in a directory in X time after their creation.
Downloads
4
Maintainers
Readme
Installation
npm install node-crond --save
Options
dir
String - The path to directorytimeInMs
Number - The time in miliseconds to delete the file after their time creationdebug
Boolean - Log the deleted file to console
Example usage
const CronD = require("node-crond");
// intialize crond to delete all files in ./path/to/dir directory with 120000ms (2 minutes) after the file creation time
const crond = new CronD({ dir: "./path/to/dir", timeInMs: 120000 });
// start the check (remember that crond already have the interval to check set to 5 seconds so you do not need to do the interval again yourself)
crond.init();
// clear the interval
crond.cancel();