FileSystemProxy.FileExists(String) Method

Definition

Returns True if the specified file exists.

C#
public bool FileExists(string file);

Parameters

file
String

Name and path of the file.

Returns

Returns True if the file exists; otherwise this method returns False.

Exceptions

The name of the file ends with a backslash (\).

Examples

This example checks to see whether or not the file Check.txt exists and supplies the information in a message box.

VB
If My.Computer.FileSystem.FileExists("c:\Check.txt") Then
    MsgBox("File found.")
Else
    MsgBox("File not found.")
End If

Remarks

If the application does not have sufficient permissions to read the specified file, the FileExists method returns False, regardless of the existence of the path; the method does not throw an exception.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 5, 6, 7, 8, 9, 10

See also