Delete all files from A subdirectory of ALL subdirectories in windows batch -


i have directory structure

c:\users\x\appdata\local\microsoft\windows\temporary internet files c:\users\y\appdata\local\microsoft\windows\temporary internet files c:\users\z\appdata\local\microsoft\windows\temporary internet files ... 

i want delete temporary internet files\*.* c:\users\ x|y|z... \...

is there way that?

like :

edit :

@echo off /f "delims=" %%a in ('dir /b /ad c:\users\') ( del /q "c:\users\%%a\appdata\local\microsoft\windows\temporary internet files\"*.* ) 

Comments

Popular posts from this blog

jQuery Mobile app not scrolling in Firefox -

c++ - How to add Crypto++ library to Qt project -

php array slice every 2th rule -