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

如果 fs.FolderExists("c:\temp") = true,那麼
     Response.Write("資料夾 c:\temp 存在。")
Else
     Response.Write("資料夾 c:\temp 不存在。")
End If

set fs=nothing
%>


</body>
</html>