---------- Edited by willsort ----------
修改原标题:dos高手的难题
---------- Edited by willsort ----------
[ Last edited by willsort on 2005-10-26 at 15:19 ]作者: gmy 时间: 2005-10-22 14:41 加入 磁盘清理 任务 或 自制一个批处理放到RUN里。作者: chenhui530 时间: 2005-10-23 14:34 for /f "delims=" %%a in ('dir /ad /b d:\*') do if /i not "%%a" =="NORTON" if /i not "%%a" =="MY DOCUMONT" rd /q /s d:\%%a
for /f "delims=" %%a in ('dir /ad /b e:\*') do rd /q /s e:\%%a作者: 不得不爱 时间: 2005-10-24 08:29 应该是
for /f "delims=" %%a in ('dir /a /b d:\*') do if /i not "%%a" =="NORTON" if /i not "%%a" =="MY DOCUMONT" rd /q /s d:\%%a
for /f "delims=" %%a in ('dir /a /b e:\*') do rd /q /s e:\%%a
吧!作者: jamjiajam 时间: 2005-10-24 22:59 谢谢两位作者: willsort 时间: 2005-10-25 18:14 Re jamjiajam: