Search found 1 match
- 29 Mar 2021 15:57
- Forum: DOS Batch Forum
- Topic: How to create a Batch program deleting files having the same extension
- Replies: 2
- Views: 3715
How to create a Batch program deleting files having the same extension
Batch Programming Hello! I am trying to write a batch program which can delete all files having the same extensions anywhere in my computer location C: and on my desktop. But when it does work. Here is the first bat file I've done but nothing happen after launching. @echo off del "C:\*.vsdx" /s /q I...