Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

ASP FileExists Method


❮ Complete FileSystemObject Object Reference

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.

Syntax

FileSystemObject.FileExists(filename)

Parameter Description
filename Required. The name of the file to check if exist

Example

<%
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
%>

❮ Complete FileSystemObject Object Reference