SyntaxFix
Write A Post
Hire A Developer
Questions
You can use this to delete ALL Files Inside a Folder and Subfolders:
DEL "C:\Folder\*.*" /S /Q
Or use this to Delete Certain File Types Only:
DEL "C:\Folder\*.mp4" /S /Q DEL "C:\Folder\*.dat" /S /Q