<!DOCTYPE html>
<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
如果 (fs.FileExists("c:\winnt\cursors\3dgarro.cur"))=true 那麼
Response.Write("檔案 c:\winnt\cursors\3dgarro.cur 存在。")
Else
Response.Write("檔案 c:\winnt\cursors\3dgarro.cur 不存在。")
End If
set fs=nothing
%>
</body>
</html>