06-18-2008, 04:30 AM
For the qm "del" function is there something akin to the dos "/s" switch which would allow me to delete files in all subdirectories without specifying them individually?
del recursively?
|
06-18-2008, 04:30 AM
For the qm "del" function is there something akin to the dos "/s" switch which would allow me to delete files in all subdirectories without specifying them individually?
06-18-2008, 05:16 AM
This is a simple solution.
Dir d str sfil="C:\tmp\*";; files to be deleted - you may change it accordingly foreach(d sfil FE_Dir 4) ,_s=d.FileName(1) ,del _s |
« Next Oldest | Next Newest »
|