How do I delete files or folders recursively on Windows from the command line?
I have found this solution where path we drive on the command line and run this comman
You could also do:
del /s /p *.{your extension here}
The /p will prompt you for each found file, if you're nervous about deleting something you shouldn't.
/p