Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
All Methods
FileSystemObject Object
METHOD: FileSystemObject.FileExists
Implemented in version 2.0
object.
FileExists
(file)
This method lets us check if a specified file exists. It returns a Boolean value -
True
if the file does exist and
False
if it doesn't. Note that if the file that you are checking for isn't in the current directory, you must supply the complete path.
In the following example the
FileExists
method is used to check for a specific file before deleting it.
Code:
<%
dim filesys
Set filesys = CreateObject("Scripting.FileSystemObject")
filesys.CreateTextFile "c:\somefile.txt", True
If filesys.FileExists("c:\somefile.txt") Then
filesys.DeleteFile "c:\somefile.txt"
Response.Write("File deleted")
End If
%>
Output:
"File deleted"
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information