forked from caspernikus/CoinStats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.js
More file actions
34 lines (28 loc) · 774 Bytes
/
utils.js
File metadata and controls
34 lines (28 loc) · 774 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
32
33
34
var fs = require('fs');
var clearImgFolder = function() {
var path = './img';
if (fs.existsSync(path)) {
fs.readdirSync(path).forEach(function(file, index){
var filePath = path + "/" + file;
fs.unlinkSync(filePath);
});
}
}
var writeToStateJSON = function() {
const todayDate = new Date()
const day = todayDate.getDate()
const month = todayDate.getMonth() + 1
const year = todayDate.getFullYear()
var state = {
last_time_posted: day + "/" + month + "/" + year
};
fs.writeFile('state.json', JSON.stringify(state), function (err) {
if (err) {
console.log(err);
}
});
}
module.exports = {
clearImgFolder: clearImgFolder,
writeToStateJSON: writeToStateJSON,
}