美文网首页
nodejs修改文件名

nodejs修改文件名

作者: 银角大王__ | 来源:发表于2022-07-26 10:08 被阅读0次
    const fs = require("fs");
    let path = '路径'
    fs.readdir(path, function (err, files) {
        files.forEach(function (filename, index) {
            let oldPath = path + '/' + filename;
            let newPath = oldPath.replace(/\Y[0-9]*\_/g, 'Y1_')
            console.log(oldPath, '----------', newPath);
            fs.rename(oldPath, newPath, function (err) {
                if (!err) {
                    console.log(filename + '修改完成!')
                }
            })
        })
    })
    
    

    相关文章

      网友评论

          本文标题:nodejs修改文件名

          本文链接:https://www.haomeiwen.com/subject/rdhoirtx.html