I am trying to copy the contents of a folder into another folder in another drive using XCOPY.
Here is code I have now but it isn't working and I figure xcopy would be the easier way to go because MOVETO and CopyDirectory haven't been working because its copying files to a different directory.
Sub CopyFiles()
Dim DestinationDirectory As String = "I:\New\Export\ID"
Dim SourceDirectory As String = "C:\Temp2\"
Try
Dim f() As String = Directory.GetFiles(SourceDirectory)
For i As Integer = 0 To UBound(f)
File.Copy(f(i), DestinationDirectory & "\" & SourceDirectory(f(i)))
Next
Catch ex As Exception
End Try
End Sub