如何在不删除其内容的情况下删除cmd中的目录?
how to delete a directory in cmd, without deleting its content?
我是 cmd 的新手,我接到了一个任务,要在一行中删除一个目录,但不删除其内容。
我怎样才能做到这一点?
我已经尝试过 rmdir
和 del
,但它们会一起删除目录的内容。
我考虑过先使用 move
来移动内容,但我不知道如何在一行中删除文件夹。
任何帮助将不胜感激
Like this on all Microsoft OSes since 2000, and still good today:
dir & echo foo
If you want the second command to execute only if the first exited successfully:
dir && echo foo
如回答here。
因此您可以轻松移动,然后一行删除所有文件夹。
我是 cmd 的新手,我接到了一个任务,要在一行中删除一个目录,但不删除其内容。
我怎样才能做到这一点?
我已经尝试过 rmdir
和 del
,但它们会一起删除目录的内容。
我考虑过先使用 move
来移动内容,但我不知道如何在一行中删除文件夹。
任何帮助将不胜感激
Like this on all Microsoft OSes since 2000, and still good today:
dir & echo foo
If you want the second command to execute only if the first exited successfully:
dir && echo foo
如回答here。
因此您可以轻松移动,然后一行删除所有文件夹。