Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.FileExists

TElCustomFileSystemAdapter     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Checks if the specified file exists in the file system.

Declaration

[C#]
    bool FileExists(string Path);

[VB.NET]
    Function FileExists(ByVal Path As String) As Boolean

[Pascal]
    function FileExists(const Path : string) : boolean; virtual; abstract;

[C++]
    bool FileExists(const std::string &Path);

[PHP]
    bool FileExists(string $Path)

[Java]
    boolean fileExists(String arg0);

Parameters

  • Path - path to the file to be checked.

Return value

    Returns True if the specified file exists, and False otherwise.

Description

    Call this method to check if the file exists in the file system.

See also:     FileDelete     FileOpen    

Discuss this help topic in SecureBlackbox Forum