Hi!
I have to move a file from a server to another.I tried to use the MoveFile method for this , but I'm getting the following error:
Microsoft VBScript runtime error '800a0035'
File not found
the command looks like this:
It seems that the second location(the destination) cannot be found.The guy who's in charge of the server told me I have the permissions to acces the folder.
Did I do something wrong?Is there another way to copy a file between 2 servers?
Thanks in advance!
I have to move a file from a server to another.I tried to use the MoveFile method for this , but I'm getting the following error:
Microsoft VBScript runtime error '800a0035'
File not found
the command looks like this:
Code:
fs.MoveFile Server.MapPath("upload/tmb.xls"), "\\tmav035a\Test\AssetDB_test\tmb.xls"
It seems that the second location(the destination) cannot be found.The guy who's in charge of the server told me I have the permissions to acces the folder.
Did I do something wrong?Is there another way to copy a file between 2 servers?
Thanks in advance!