我想删除AppData / Roaming / MyFolder / myfile.txt中的文件。
我使用命令提示符并键入:<iframe
src="http://docs.google.com/gview?url=http://xxx.xxx.xxx.xxx/viewer/Final.docx&embedded=true"
style="width:100%; height:100%;"
frameborder="0">
</iframe>
然后命令提示符说:del %userprofile%/AppData/Roaming/MyFolder/myfile.txt
然后我再次思考并使用Parameter format not correct - "ppData"
并输入:%appdata%
但是命令提示符说:del %appdata%/MyFolder/myfile.txt
如何使用Invalid switch - "MyFolder"
或%userprofile%
删除myfile.txt?
我的语法错了吗?
答案 0 :(得分:3)
使用/
代替del %userprofile%\AppData\Roaming\MyFolder\myfile.txt
作为路径分隔符:
\s
答案 1 :(得分:0)
使用此:
del /f /q “file_path”
此外,在文件路径中使用反斜杠。
答案 2 :(得分:-1)
尝试在命令中替换%userprofile%
:
%userprofile%/AppData/Roaming/MyFolder/myfile.txt
使用您的用户帐户名称。如果仍然无效,请尝试寻址要删除的文件的完整路径。