Actually, not really. It does mean that we're not headed in the wrong direction, so that makes me feel a little better. I think this post is getting too long and viewers are probably getting sick of seeing it constantly jumping to the top.
Since we know that the FileSystemObject does work, and that really is the proper way to do file management with ASP, why don't you repost a new question as follows:
=================================================
=================================================
Subject: FSO won't access mapped network drive.
Body: I created a network map on my IIS server to a network share in my network. I gave the map the drive letter
F:. I can view and access the share from the web server desktop, but when I run the following code,
F: is nowhere to be found. I have also tested
FileExists on a file in that share, and still no luck.
<%@ Language=VBScript%>
<%Option Explicit%>
<%
dim objFile
dim objDrives
dim i
Set objFile = Server.CreateObject("Scripting.FileSystemObject"
Set objDrives = objFile.Drives
FOR EACH i IN objDrives
Response.Write i & "<br>"
NEXT
%>
That code returns A: C: D: E: to my browser window. Where's F: ??
Stumped.
=================================================
=================================================
Post that to this forum and let's see if we can get a response. In the meantime, I am going to try to duplicate your problem here by testing different share types, etc..
TW