Are there any tricks to get File Exists() to work with an internal html path (internal meaning a network drive represented as an html path and not UNC path)?
So far I cannot get it to recognize a file path that exists using the html path representation like below. Are there any tricks to make this work or some other file check related command perhaps? DJ
file exists("p:\\mypath\test.jsl"); //UNC path works (can find the JSL that exists)
file exists("html://mycompanyserver.com/mypath/test.jsl"); //HTML path does not work (cannot find the JSL that exists)