案例:ASP/ADO案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<html>
3
<body>
4
5
<%
6
dim fs,d
7
set fs=Server.CreateObject("Scripting.FileSystemObject")
8
set d=fs.GetDrive("c:")
9
Response.Write("路径是:" & d.Path)
10
set d=nothing
11
set fs=nothing
12
%>
13
14
</body>
15
</html>
16