NodeJS rename 批量修改名字

2020-11-12  本文已影响0人  ShoneSingLone
import {
    promises as fs
} from "fs";
import path from "path";
(async () => {
    try {
        const res = await fs.readdir(path.resolve("./"));
        await Promise.all(
            res.filter(name => /.mp3$/.test(name))
            .map(async name => await fs.rename(name, `0${name}`))
        )
    } catch (error) {
        console.error(error)
    }
})();
上一篇 下一篇

猜你喜欢

热点阅读