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