ASP/FSO network folder issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • doneholmes
    New Member
    • Aug 2006
    • 1

    ASP/FSO network folder issue

    I have an ASP application that runs on our company intranet. The script checks a folder structure within a network share and, if it contains any files, provides the user a link to the directory. My problem is that this only works for the users who have write permission for the network folder. The bit of code that is returning erroneous results is:

    Code:
    itExists = fso.FolderExists(thePath)
    This only returns the correct value (true or false) if the user has write permissions to the network resource. If the user doesn't have write permission, then it always returns false. That doesn't seem right since i'm not attempting to write anything at all. As a side note, I force all users to log into the site using basic authentication. (FSO doesn't work w/ Windows Integrated accross the network). Any guidence is much appreciated... this is driving me crazy.
Working...