cmd删除文件夹下全部文件、文件夹

del  c:\test\*.*   /s /q    #q 以安静方式删除所有文件
rd c:\test\   /s /q    # 删除所有空文件夹

你可能感兴趣的:(cmd删除文件夹下全部文件、文件夹)