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