<!DOCTYPE html>
<html>
<body>
<%
设置 fs=Server.CreateObject("Scripting.FileSystemObject")
如果 fs.driveexists("c:") = true 则
响应.写入("驱动器 c: 存在。")
其他
响应.写入("驱动器 c: 不存在。")
结束如果
响应.写入("<br>")
如果 fs.driveexists("g:") = true 则
响应.写入("驱动器 g: 存在。")
其他
响应.写入("驱动器 g: 不存在。")
结束如果
设置 fs=nothing
%>
</body>
</html>