boolean = File(pathname)
Example Usage:
ASP Source Code:<% = File( server.mappath("/New Folder/file.asp") ) %>
<% Private Function File(byVal pathname) Dim objFSO Set objFSO = Server.CreateObject("Scripting.FileSystemObject") File = objFSO.FileExists(pathname) Set objFSO = Nothing End Function %>