<!DOCTYPE html>
<html>
<body>
<%
定义 fs=Server.CreateObject("Scripting.FileSystemObject")

如果 fs.FolderExists("c:\temp") = true
     响应.写("文件夹 c:\temp 存在。")
否则
     响应.写("文件夹 c:\temp 不存在。")
结束如果

定义 fs=无
%>


</body>
</html>