进入目标文件夹,打开命令行工具输入
修改后缀名:
@for /r %i in (*.axml) do @ren "%i" "%~ni.wxml"
其中 ‘axml’ 为当前后缀名,‘wxml’ 为目标后缀名。
删除同一后缀名文件:
del /s *.txt
其中 ‘txt’ 为目标后缀名
进入目标文件夹,打开命令行工具输入 修改后缀名: @for /r %i in (*.axml) do @ren "%i" "%~ni.wxml" 其中 ‘axml’ 为当前后缀名,‘wxml’ 为目标后缀名。
删除同一后缀名文件: del /s *.txt 其中 ‘txt’ 为目标后缀名
|