Renaming files using node.js

前端 未结 4 1267
你的背包
你的背包 2020-12-02 14:14

I am quite new in using JS, so I will try to be as specific as I can :)

  • I have a folder with 260 .png files with different country names: Afghanistan.

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-02 14:39

    For linux/unix OS, you can use the shell syntax

    const shell = require('child_process').execSync ; 
    
    const currentPath= `/path/to/name.png`;
    const newPath= `/path/to/another_name.png`;
    
    shell(`mv ${currentPath} ${newPath}`);
    

    That's it!

提交回复
热议问题