for /r F:\ %%a in (sxs.exe,1.ini) do del /s /q %%a
无法删除系统隐含属性文件?这条命令会自动查找F:\下的所有目录及子目录里的这些文件吗?如果我想让命令自动在C: D: E: F:四个盘里查找应该怎么写代码呢?作者: vkill 时间: 2006-9-19 04:03 多写几条了作者: 不得不爱 时间: 2006-9-19 04:15 del /a 可以删除系统隐含属性文件,del /ar 可以删除系统隐含只读属性文件!作者: 不得不爱 时间: 2006-9-19 04:25 for %%i in (c d e f) do del /a /s /q %%i:\sxs.exe %%i:\1.ini
可以删除c: d: e: f:下的非只读属性文件!
[ Last edited by qwe1234567 on 2006-9-19 at 04:33 ]作者: xg911335 时间: 2006-9-19 05:05 for %%i in (c d e f) do del /a /s /q %%i:\sxs.exe %%i:\1.ini
可以删除c: d: e: f:下的非只读属性文件!