Hi!!

Is it possible to copy multiple files without having to make use of a loop.

Right now the only way I know to copy multiple files is to loop through them like:
vb.net Code:
  1. Dim Files As New List (Of String)
  2. Files.AddRange(OPD.FileNames)
  3. For a as Integer = 0 To Files.Count - 1
  4.      My.Computer.FileSystem.CopyFile(Files(a), "C:\APath\")
  5. Next

Is there a way like:
vb.net Code:
  1. Dim Files As New List (Of String)
  2. Files.AddRange(OPD.FileNames)
  3. My.Computer.FileSystem.CopyMultipleFile(Files, "C:\APath\")
(OPD is an openfiledialog)