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
If you want to delete a specific extension recursively, use this:
For /R "C:\Users\Desktop\saleh" %G IN (*.ppt) do del "%G"