案例:ASP/ADO案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<html>
3
<body>
4
<%
5
Set fs=Server.CreateObject("Scripting.FileSystemObject")
6
7
If fs.FolderExists("c:\temp") = true Then
8
      Response.Write("文件夹 c:\temp 存在。")
9
Else
10
      Response.Write("文件夹 c:\temp 不存在。")
11
End If
12
13
set fs=nothing
14
%>
15
16
</body>
17
</html>
18