Hi,
I am trying to delete multiple files in a particular directory.
The code will like this
\\\
Dim s As String
For Each s in Directory.GetFi les(...)
system.io.file. delete(s)
Next s
///
Is there a method that would allow me delete more than one file at a time?
for instance Delete "*.txt"
I am trying to delete multiple files in a particular directory.
The code will like this
\\\
Dim s As String
For Each s in Directory.GetFi les(...)
system.io.file. delete(s)
Next s
///
Is there a method that would allow me delete more than one file at a time?
for instance Delete "*.txt"
Comment