写个bat,删除d:\csv* 文件夹。rd /s /q D:\csv123,只能指定文件夹全名吗?我想删除以csv开始的文件夹,如何写。
rd /s /q D:\csv*
FOR /d %%a in (csv\*) DO RD /s /q "%%a"