Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.ObjectExists

TElDropboxDataStorage     See also     


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


Checks whether an object exists in the storage.

Declaration

[C#]
    bool ObjectExists(string Path);
    bool ObjectExists(string Path, string Rev);
    bool ObjectExists(TElDropboxDataStorageObject Obj);

[VB.NET]
    Function ObjectExists(ByVal Path As String) As Boolean
    Function ObjectExists(ByVal Path As String, ByVal Rev As String) As Boolean
    Function ObjectExists(ByVal Obj As TElDropboxDataStorageObject) As Boolean

[Pascal]
    function ObjectExists(const Path : string) : boolean;
    function ObjectExists(const Path : string; const Rev : string) : boolean;
    function ObjectExists(Obj : TElDropboxDataStorageObject) : boolean;

[C++]
    bool ObjectExists(const std::string &Path);
    bool ObjectExists(const std::string &Path, const std::string &Rev);
    bool ObjectExists(TElDropboxDataStorageObject &Obj);
    bool ObjectExists(TElDropboxDataStorageObject *Obj);

[PHP]
    bool ObjectExists(string $Path)
    bool ObjectExists(string $Path, string $Rev)
    bool ObjectExists(TElDropboxDataStorageObject $Obj)

[Java]
    boolean objectExists(String Path);
    boolean objectExists(String Path, String Rev);
    boolean objectExists(TElDropboxDataStorageObject Obj);

Parameters

  • Obj - data object which existence should be checked.
  • Path - specifies path to the object in question.
  • Rev - the object's revision; defaults to the most recent revision.

Return value

    Returns True if the object exists in the data storage and False otherwise.

Description

    Call this method to check a specific object exists in the storage.

See also:     CreateObject     List    

Discuss this help topic in SecureBlackbox Forum