diff options
Diffstat (limited to 'php/cleanup.js')
-rw-r--r-- | php/cleanup.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/php/cleanup.js b/php/cleanup.js new file mode 100644 index 0000000..a3f37ea --- /dev/null +++ b/php/cleanup.js @@ -0,0 +1,15 @@ +const fs = require('fs'); + +module.exports = () => { + fs.readdir("./cache", (error, files) => { + if (error) { + console.log(chalk.gray(cluster.worker.id + " ") + chalk.yellow("warn:") + " unable to cleanup cache: " + error.message); + } else { + files.forEach((file) => { + if (file.startsWith("PHP_")) { + fs.unlink("./cache/" + file, () => {}); + } + }) + } + }) +}
\ No newline at end of file |