-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
31 lines (22 loc) · 721 Bytes
/
Copy pathscript.js
File metadata and controls
31 lines (22 loc) · 721 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
25
26
27
28
29
30
31
const File = require("./models/files");
const fs = require('fs');
const connectDB = require('./config/db');
connectDB();
async function deleteData() {
// 24 hrs old file fetching
const pastDate = new Date(Date.now()-(24*60*60*1000));
const files = await File.find({createdAt : { $lt: pastDate }});
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');
}
}
deleteData().then(process.exit());