亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ASP FileExists 方法

定義和用法

FileExists 方法可返回指示指定的文件是否存在的布爾值。如果存在,則返回 Ture,否則返回 False。

語法:

FileSystemObject.FileExists(filename)
參數(shù) 描述
filename 必需的。需檢測是否存在的文件的名稱。

實例

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.FileExists("c:\asp\introduction.asp")=true then
  response.write("File c:\asp\introduction.asp exists!")
else
   response.write("File c:\asp\introduction.asp does not exist!")
end if
set fs=nothing
%>