Reputation: 1572
I would like to run a batch (.bat containing DOS commands) that would clean my folder by deleting any pdf that is still there. How do you do that ?
Upvotes: 1
Views: 3979
Reputation: 180878
del *.pdf /q
Explanation:
del -- Dos command to delete files
*.pdf -- all files with the .PDF extension in the current directory
/q -- Don't ask for confirmation.
Upvotes: 4