循环遍历修改文件夹下的文件以及子文件夹内文件的后缀名

循环遍历修改文件夹下的文件以及子文件夹内文件的后缀名

 

进入目标文件夹,打开命令行工具输入

修改后缀名: 

@for /r %i in (*.axml) do @ren "%i" "%~ni.wxml"

其中 ‘axml’ 为当前后缀名,‘wxml’ 为目标后缀名。

 

删除同一后缀名文件:  

del /s *.txt

其中 ‘txt’ 为目标后缀名

 

posted on 2017-09-04 15:42 AiQFeng 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/AustinAn/p/7473919.html

你可能感兴趣的:(shell)