DEL 说路径不存在(它确实存在)
我猜这是一个基本的 DOS 问题,它与 del 命令有关。我想做的就是删除一个文件。
C:\文档和 设置\matthewe\桌面\testfolder>del C:\文件和 设置\matthewe\桌面\testfolder\test.pdf 系统找不到路径 指定。
我可以保证 test.pdf 存在,并且我能够 cd 到正确的文件夹这一事实表明它存在。那么为什么会出现错误呢?
I'm guessing this is a basic DOS question, its with the del command. All I want to do is delete a file.
C:\Documents and
Settings\matthewe\Desktop\testfolder>del
C:\Documents and
Settings\matthewe\Desktop\testfolder\test.pdf
The system cannot find the path
specified.
I can guarantee that test.pdf exists, and the fact I've been able to cd to the correct folder shows it exists. So why the error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将路径放在双引号内,DOS 不喜欢内部有空格的长路径:
Try to put your path inside double quote, DOS don't like long path with space inside:
使用引号 -
del "C:\Documents and Settings\matthewe\Desktop\testfolder\test.pdf"
use quotes -
del "C:\Documents and Settings\matthewe\Desktop\testfolder\test.pdf"