views:

167

answers:

1

I have multiple websites set up in the same folder, and I want to create a batch file that will delete the cache in each of them without having to add a new line for each site. For example I am using this:

del /S /Q D:\www\site-name\cache\*

Which works, but I have to add a new line for every site in D:\www. The del command doesn't support:

del /S /Q D:\www\*\cache\*

So what is a better way to do this?

+3  A: 

I think this should work:

for /D %%f in ("D:\www\*") do @(
del /S /Q "%%f\cache\*"
)
Adisak
worked perfectly, thank you
iamthejeff
Glad it helped you out.
Adisak