Discuss this help topic in SecureBlackbox Forum

TElCompoundFileStorageEntry.SubStorageExists

TElCompoundFileStorageEntry     See also     


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


Checks if the substorage with given name exists.

Declaration

[C#]
    bool SubStorageExists(string StorageName);

[VB.NET]
    Function SubStorageExists(ByVal StorageName As String) As Boolean

[Pascal]
    function SubStorageExists(const StorageName : WideString) : boolean;

[C++]
    bool SubStorageExists(const sb_u16string &StorageName);
    bool SubStorageExists(const std::wstring &StorageName);

[PHP]
    bool SubStorageExists(string $StorageName)

[Java]
    boolean subStorageExists(String StorageName);

Parameters

  • StorageName - name of the substorage

Return value

    Returns True if the substorage with the specified name exists in the storage, and False otherwise.

Description

    Use this method to check if the substorage with the specified name exists in the storage.

See also:     GetSubStorage     FindEntryByName    

Discuss this help topic in SecureBlackbox Forum