关闭。这个问题是 off-topic 。它目前不接受答案。
想改善这个问题吗? Update the question 所以堆栈溢出是 on-topic。
8年前关闭。
Improve this question
如何在 Windows 7 下重命名包含空格的路径?
命令行:
rename c:\ho hum\new folder -> c:\ho_hum\new_folder
最佳答案
这只能通过移动文件夹并为目标设置新名称来完成:
move "c:\ho hum\new folder" "c:\ho hum\new_folder"
move "c:\ho hum" "c:\ho_hum"
关于cmd - 如何在 Windows 7 中重命名文件夹 : command line that have spaces in the name,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15974707/