cmd批量给文件加前缀

for /f "delims=-" %i in ('dir *.svg /b') do move %i x%i

 给文件夹里的svg文件,统一加上x 的前缀.

原文地址:https://www.cnblogs.com/codeit/p/14635664.html