进入目标文件夹,打开命令行工具输入
修改后缀名:
@for /r %i in (*.axml) do @ren "%i" "%~ni.wxml"
其中 ‘axml’ 为当前后缀名,‘wxml’ 为目标后缀名。
删除同一后缀名文件:
del /s *.txt
其中 ‘txt’ 为目标后缀名
posted on 2017-09-04 15:42 阅读( ...) 评论( ...)
本文共 241 字,大约阅读时间需要 1 分钟。
进入目标文件夹,打开命令行工具输入
修改后缀名:
@for /r %i in (*.axml) do @ren "%i" "%~ni.wxml"
其中 ‘axml’ 为当前后缀名,‘wxml’ 为目标后缀名。
删除同一后缀名文件:
del /s *.txt
其中 ‘txt’ 为目标后缀名
转载于:https://www.cnblogs.com/AustinAn/p/7473919.html