How can I copy a file without open it???? The file is on read-only network drive?:confused
V vatov Jun 10, 2004 #1 How can I copy a file without open it???? The file is on read-only network drive?:confused
N Nikos Yannacopoulos Jun 10, 2004 #2 Dim fSource As String, fDestination As String fSource = "J:\Folder1\Folder2\...\Filename1.ext" fDestination = "K:\FolderX\FolderY\...\FilenameZ.ext" FileCopy fSource, fDestination HTH, Nikos
Dim fSource As String, fDestination As String fSource = "J:\Folder1\Folder2\...\Filename1.ext" fDestination = "K:\FolderX\FolderY\...\FilenameZ.ext" FileCopy fSource, fDestination HTH, Nikos