如何批量在文件名前面增加相同字符?

2025-01-19 12:05:16
推荐回答(1个)
回答1:

@for /f "tokens=*" %%i in ('dir/b *.doc') do @ren "*.doc" "#%%i"