How about!
I'm trying to copy a directory with files being copied and pasted in another route, I have this.
Dim Carpeta As String
Carpeta = Path.Combine(SERVIDOR, DATA)
Directory.CreateDirectory(Carpeta)
FileSystem.FileCopy("-22910", Carpeta)
The FileSystem.FileCopy
is for a file, but I need to copy the whole directory, does anyone know of a function that I could use?