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

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -