I have huge folder and inside it I have a lot of sub folder inside subfolder and I wrote this Command for deleting files in subfolder and I want to do the same thing with an script PowerShell.
For example:
del /F /S /Q "C:\QQQ\*.RAW"1 Answer
get-childitem -path C:\QQQ -include *.raw -recurse | remove-item