How to delete all files and directories with an exception

后端 未结 2 945
一生所求
一生所求 2021-01-28 14:40

I have a few files and directories, (all directories contain files):

C:\\ABC
│   file1.txt
│
├───folder1
│       oneormorefiles.ext
│
├───folder2
│              


        
2条回答
  •  既然无缘
    2021-01-28 15:21

    I would suggest this as a possibile alternative to using FOR loop and/or a mixture of DEL and RD:

    MD "%TEMP%\$_.dummy"&&ROBOCOPY "%TEMP%\$_.dummy" "C:\abc" /E /XD logs /PURGE>NUL 2>&1&RD "%TEMP%\$_.dummy"
    

提交回复
热议问题