ASP FileExists 方法
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") 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
%>
dim fs
set fs=server.createobject("scripting.filesystemobject")
if fs.fileexists("c:\asp\introduction.asp") 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
%>

相關文章
- ASP Response 對象
- ASP FileSystem 對象
- ASP TextStream 對象
- AJAX 簡介
- ASP 簡介
- ASP ReadAll 方法
- ASP DateLastAccessed 屬性
- ASP ShortPath 屬性
- ASP Move 方法
- ASP IsRootFolder 屬性
- ASP Cookies 集合
- ASP ContentType 屬性
- ASP Status 屬性
- ASP BinaryWrite 方法
- ASP BinaryRead 方法
- ASP Abandon 方法
- ASP MapPath 方法
- ASP FolderExists 方法
- ASP GetParentFolderName 方法
- ASP GetSpecialFolder 方法