2018-03-30 16:57:25 +00:00
|
|
|
const fs = require('fs');
|
2018-10-02 08:03:48 +00:00
|
|
|
const path = require('path');
|
|
|
|
const getDirName = path.dirname;
|
2018-04-14 19:14:02 +00:00
|
|
|
const os = require('os');
|
2018-03-30 16:57:25 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
writeFile(fullpath, contents) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2021-11-02 06:47:42 +00:00
|
|
|
fs.mkdir(getDirName(fullpath), {recursive:true}, (err) => {
|
2018-03-30 16:57:25 +00:00
|
|
|
if (err) reject(err);
|
|
|
|
fs.writeFile(fullpath, contents, (err) => {
|
|
|
|
if (err) reject(err);
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-04-14 19:14:02 +00:00
|
|
|
},
|
|
|
|
|
2018-07-14 16:31:14 +00:00
|
|
|
readFile(filepath) {
|
2018-10-02 08:03:48 +00:00
|
|
|
return fs.readFileSync(filepath, 'utf-8');
|
2018-07-14 16:31:14 +00:00
|
|
|
},
|
|
|
|
|
2018-04-14 19:14:02 +00:00
|
|
|
getTmpDir() {
|
|
|
|
return os.tmpdir();
|
2018-03-30 16:57:25 +00:00
|
|
|
}
|
2019-12-06 18:32:55 +00:00
|
|
|
}
|