开发者

cleanup batch file

I'm writing a batch file to cleanup my source folders. I want to d开发者_运维百科elete all wincvs generated files with a prefix of .#

FOR /F "tokens=*" %%G IN ('DIR /B .#*.*') DO DEL "%%G"

the problem I'm having is that it's not deleting my files within subdirectories.


I think you need DEL /S


you probably want to do

DIR /S /B .#*.*

to list out the directories recursively


What about this:

FOR /R C:\FOLDER\SUBFOLDER %%G IN (.#*.*) DO DEL %%G
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜