ASP FileExists 方法
asp fileexists 方法
完整的 filesystemobject 对象参考手册fileexists 方法返回指示指定的文件是否存在的布尔值。如果存在,则返回 ture,否则返回 false。
语法
filesystemobject.fileexists(filename)
参数 | 描述 |
---|---|
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
%>
完整的 filesystemobject 对象参考手册
相关文章
- 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 方法