save-file.js 1023 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // 保存文件
  2. const fs = require('fs');
  3. const { log_w } = require('./log-w');
  4. /**
  5. * 保存文件
  6. * @param { string } fileName 文件名
  7. * @param { string } content 内容
  8. * @param { string } path 地址 eg: 'a/b/'
  9. */
  10. function saveFile(fileName, content, path = '') {
  11. // 根路径
  12. const pathBane = './output/';
  13. // 判断路径不存在则创建
  14. if (path) {
  15. const pathArr = path.split('/');
  16. let pathStr = '';
  17. for (let item of pathArr) {
  18. if (item) {
  19. pathStr += item + '/';
  20. if (!fs.existsSync(pathBane + pathStr)) {
  21. fs.mkdirSync(pathBane + pathStr);
  22. }
  23. }
  24. }
  25. }
  26. fs.writeFile(`${pathBane}${path}${fileName}`, content, { 'flag': 'w' }, function (err) {
  27. if (err) {
  28. console.log(`写入${path} ${fileName}失败`);
  29. throw err
  30. };
  31. console.log(`写入${path} ${fileName}成功`);
  32. });
  33. }
  34. exports.saveFile = saveFile;