我有200,000个文件要根据文件名中的关键字发送到不同的文件夹
在英语中,如果文件名中有(shtf或prepper或prepping或send),则将其发送(移动)到文件夹shtf
if a file has (cookbook or gluten or recipe) move to food folder
*cookbook* *GLUTEN* *RECIPE*
示例(文件名) more shtf tips.epub移动到文件夹shtf
ifshtfbeready.epub移动到文件夹shtf
oldworldcookbook.epub移动到文件夹食物
我是老的退休的i小型基本sas dos命令或?
发布于 2019-03-04 09:50:10
您可以在源文件名列表中使用通配符,并使用目录作为目标,使用一个命令移动多个文件。
move c:\dir1\*cookbook*.* c:\food
move c:\dir1\*gluten*.* c:\food
https://stackoverflow.com/questions/54954402
复制相似问题