1.0.4 • Published 6 years ago
node-crond v1.0.4
Installation
npm install node-crond --saveOptions
dirString - The path to directorytimeInMsNumber - The time in miliseconds to delete the file after their time creationdebugBoolean - 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();