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