I am currently having trouble trying to delete some files in a cmd script
I have the following:
for /d %%A in (C:\Users\*) do for /d %%B in (%%A\test\*) do echo %%B
Although I need to delete the output files, not list them
I have tried:
for /d %%A in (C:\Users\*) do for /d %%B in (%%A\test\*) do del %%B
But it didnt work