打开附件
好办,以上面的XDEL为例
autoexec.bat这样写
@echo off
smartdrv 8192
xdel /n /s c:\*.tmp
xdel /n /s c:\~*.*
加载SMARTDRV是让它快些,/N参数是不用回答,/S是连子目录下文件一起处理。
Open attachment
Easy, take XDEL above as an example
Write autoexec.bat like this
@echo off
smartdrv 8192
xdel /n /s c:\*.tmp
xdel /n /s c:\~*.*
Loading SMARTDRV makes it faster, /N parameter is no need to answer, /S is to handle files in subdirectories together.