> I'm getting having a strange problem trying to move a file from one server to
> another. Here is my code:
[quoted text clipped - 14 lines]
>
> Any help would be appreciated
I would get rid of fso as fast as possible. It is very slow and can be
disabled by the user.
Do you get the same problem when you use the FileCopy command?
Try the following and see what happens
FileCopy "d:\testfile.txt", "\\server\share\testfile.txt"
This should work OK. I have used this command with 200 Mb files with no
problem. If you still have an issue I would start looking for a
Hardware/Driver problem.
John..
cbt - 21 Sep 2005 15:44 GMT
Thanks... Since I wrote my original message I've tested using FileCopy and
Kill to delete the original file. This seemed to work. I appreciate your
help.
Craig
> > I'm getting having a strange problem trying to move a file from one server
> to
[quoted text clipped - 30 lines]
>
> John..