grittyminder
IS-IT--Management
I can't figure out what's going on here. I'm using the FSO to copyFile a file from a remote server to a local machine. The destination file exists (there is error checking to ensure that this is true) as does the destination directory. The weird part is that the CopyFile function hangs freezing the script. I have error checking on after the function call but no error is ever thrown. Here is the script snippet:
FSO.CopyFile sourcePath, tempPath, true
If err.number <> 0 Then
str = "Failed to copy " & sourcePath & " to temporary directory!"
WScript.Echo(str)
WshShell.LogEvent 1, str
Err.Clear
exit function
end If
WScript.Echo("Finished.")
Of course "Finished" is never printed out either. I also tried using the file.Copy function to no avail. Any suggestions?
FSO.CopyFile sourcePath, tempPath, true
If err.number <> 0 Then
str = "Failed to copy " & sourcePath & " to temporary directory!"
WScript.Echo(str)
WshShell.LogEvent 1, str
Err.Clear
exit function
end If
WScript.Echo("Finished.")
Of course "Finished" is never printed out either. I also tried using the file.Copy function to no avail. Any suggestions?