-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
24 lines (21 loc) · 706 Bytes
/
script.js
File metadata and controls
24 lines (21 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const connectDB = require('./config/db');
const File = require('./models/file');
const fs = require('fs');
connectDB();
// Get all records older than 24 hours
async function fetchData() {
const files = await File.find({ createdAt : { $lt: new Date(Date.now() - 24 * 60 * 60 * 1000)} })
if(files.length) {
for (const file of files) {
try {
fs.unlinkSync(file.path);
await file.remove();
console.log(`successfully deleted ${file.filename}`);
} catch(err) {
console.log(`error while deleting file ${err} `);
}
}
}
console.log('Job done!');
}
fetchData().then(process.exit);