我猜这是一个基本的DOS问题,它带有del命令。我想要做的就是删除一个文件。
C:\ Documents and 设置\ matthewe \桌面\ testfolder>德尔 C:\ Documents and 设置\ matthewe \桌面\ testfolder \检验.pdf 系统找不到路径 指定。
我可以保证test.pdf存在,而且我已经能够cd到正确的文件夹显示它存在。那么为什么会出错?
答案 0 :(得分:5)
尝试将你的路径放在双引号内,DOS不喜欢里面有空格的长路径:
del "C:\Documents and Settings\matthewe\Desktop\testfolder\test.pdf"
答案 1 :(得分:2)
使用引号 - del "C:\Documents and Settings\matthewe\Desktop\testfolder\test.pdf"