Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
del /S /Q "C:\TEST\TESTFOLDER\"
实际上并没有删除 TESTFOLDER。
Del命令用于删除文件。如果要删除文件夹,应使用rmdirwith/s /q开关强制删除文件夹及其所有文件而不提示
Del
rmdir
/s /q
rmdir /S /Q "C:\TEST\TESTFOLDER\"