1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // 保存文件
- const fs = require('fs');
- const { log_w } = require('./log-w');
- /**
- * 保存文件
- * @param { string } fileName 文件名
- * @param { string } content 内容
- * @param { string } path 地址 eg: 'a/b/'
- */
- function saveFile(fileName, content, path = '') {
- // 根路径
- const pathBane = './output/';
- // 判断路径不存在则创建
- if (path) {
- const pathArr = path.split('/');
- let pathStr = '';
- for (let item of pathArr) {
- if (item) {
- pathStr += item + '/';
- if (!fs.existsSync(pathBane + pathStr)) {
- fs.mkdirSync(pathBane + pathStr);
- }
- }
- }
- }
- fs.writeFile(`${pathBane}${path}${fileName}`, content, { 'flag': 'w' }, function (err) {
- if (err) {
- console.log(`写入${path} ${fileName}失败`);
- throw err
- };
- console.log(`写入${path} ${fileName}成功`);
- });
- }
- exports.saveFile = saveFile;
|