Discuss this help topic in SecureBlackbox Forum

TElOpenOfficePackage.StreamExists

TElOpenOfficePackage     See also     


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


Checks if the entry exists in the storage.

Declaration

[C#]
    bool StreamExists(string Path);

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

[Pascal]
    function StreamExists(Path : string) : boolean;

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

[PHP]
    bool StreamExists(string $Path)

[Java]
    boolean streamExists(String Path);

Parameters

  • Path - path to the entry

Return value

    Returns True if the entry exists in the storage, and False otherwise.

Description

    Use this method to check whether the entry with the given name exists in the storage.

See also:     CloseStream     CreateStream     DeleteStream     GetStream    

Discuss this help topic in SecureBlackbox Forum