M
Mo Bandy
Using FSO I want to copy a file from the web server to a mapped network
drive (Novell server) using a physical path. However I keep getting an error
(path not found). Can someone help please...thanks. Code summary below.
'get the Physical Path of file
MyFile = Server.MapPath("..\..\..\fileshare\FILENAME.INI")
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
'copy file to novell server
dim CopyDest
CopyDest = "f:\temp\" (also tried using CopyDest =
"\\servername\temp\"
fso.CopyFile MyFile,CopyDest
What am I missing? It's gotta be something simple.
drive (Novell server) using a physical path. However I keep getting an error
(path not found). Can someone help please...thanks. Code summary below.
'get the Physical Path of file
MyFile = Server.MapPath("..\..\..\fileshare\FILENAME.INI")
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
'copy file to novell server
dim CopyDest
CopyDest = "f:\temp\" (also tried using CopyDest =
"\\servername\temp\"
fso.CopyFile MyFile,CopyDest
What am I missing? It's gotta be something simple.