FileCopy
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Is there a simple function similar to FileCopy that allows wildcards. I want to copy multiple files rather than one file at a time. I am using VB 6 Any assistance appreciated. Mike:laugh: New to IT
Use System.IO.Directory and its "Move" method to move the entire contents. If you are specific about the file types use "Getfiles" method and get them into a string array and copy them. Cheers ;)
-
Use System.IO.Directory and its "Move" method to move the entire contents. If you are specific about the file types use "Getfiles" method and get them into a string array and copy them. Cheers ;)