Batch files - The DEL command - Rob van der Woude's Scripting Pages
To delete all files from a directory, you could use: DEL *.* DEL will then ask you to confirm that you want to delete all files. In batch files, this would stop the execution of the batch file and require user interaction, which usually isn't what batch f...