标签: windows command-prompt file-handling
我使用以下命令将文件复制到具有相同名称的文件夹中。
for /f %x in ('dir /ad /b') do move %x*.* %x\
我使用move %x*.* %x\将文件移动到给定目录。它不适用于文件名中带有空格但不确定要更改的文件。
move %x*.* %x\
答案 0 :(得分:0)
此命令使用“ DELIMS =”来防止拆分。
for /f "DELIMS=" %x in ('dir /ad /b') do move "%x*.*" "%x\"