cprasley
04-03-2004, 11:47 AM
I want to replace a remote file over a potentially slow link, and definitely do NOT want to have a link drop result in an incomplete file. I'm thinking the best solution is to copy the new file to a temporary location on the remote machine, do a FileObject.copy(filename,overwrite) to replace the original and then delete the temporary. I just want some assurance that the copy function will be performed 100% remotely so that the copy function doesn't try to buffer across the network. The WSH documentation doesn't give any details about where the object methods are executed. Any ideas?