当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP FileExists 方法
The FileExists method returns a Boolean value that indicates whether a specified file exists. It returns True if the file exists and False if not.
FileExists返回的是一个逻辑值(Boolean),用它来确定指定的文件是否存在。如是True真,则表示存在;如是:False假,则表示不存在。
FileSystemObject.FileExists(filename) |
Parameter参数 | Description描述 |
---|---|
filename | Required. The name of the file to check if exist 必要参数。通过文件名检查该文件是否存在 |
<% dim fs set fs=Server.CreateObject("Scripting.FileSystemObject") if fs.FileExists("c:aspintroduction.asp")=true then response.write("File c:aspintroduction.asp exists!") else response.write("File c:aspintroduction.asp does not exist!") end if set fs=nothing %> |