save-file.js 342 B

12345678910111213141516
  1. // 保存文件
  2. const fs = require('fs');
  3. const path = require('path');
  4. const { log_w } = require('./log-w');
  5. function saveFile(fileName, con) {
  6. fs.writeFile(`./output/${fileName}`, con, { 'flag': 'w' }, function (err) {
  7. if (err) throw err;
  8. log_w(`写入${fileName}成功`);
  9. });
  10. }
  11. exports.saveFile = saveFile;