明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

對文件的設(shè)置1

[摘要]檢查指定的磁盤 文件夾 或是文件是否存在 <html> <body> <% dim objfso set objfso=server.createobject("scripting.filesystemobject") if objfso.driv...

檢查指定的磁盤 文件夾 或是文件是否存在
<html>
<body>

<%
dim objfso
set objfso=server.createobject("scripting.filesystemobject")
if objfso.driveexists("c:") then
response.write"磁盤C是存在的"
else
response.write"磁盤C是不存在的"
end if

if objfso.folderexists(server.mappath("Inetpub")) then
response.write"Inetpub文件夾是存在的"
else
response.write"Inetpub文件夾是不存在的"
end if

if objfso.fileexists(server.mappath("ww.asp")) then
response.erite"ww.asp文件是存在的"
else
response.write"ww.asp文件是不存的"
end if

set objfso=nothing
%>
</body>

</html>



標(biāo)簽:對文件的設(shè)置1 

相關(guān)文章