利用FSO檢測文件、磁盤、文件夾是否存在
<%
dim fso
set fso=server.createobject("scripting.filesystemobject")
if fso.driveexists("d:") then
response.write"磁盤D是存在的"
else
response.write"磁盤D是不存在的"
end if
if fso.folderexists(server.mappath("folder")) then
response.write"folder文件夾是存在的"
else
response.write"folder文件夾是不存在的"
end if
if fso.fileexists(server.mappath("sss.ASP")) then
response.erite"sss.ASP文件是存在的"
else
response.write"sss.ASP文件是不存的"
end if
set fso=nothing
%>