Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.List

TElDropboxDataStorage     See also     


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


Retrieves the list of objects in the specified directory.

Declaration

[C#/Java]
    void List(string Path, TElDataStorageObjectList Objects);
    void List(TElDropboxDataStorageObject Dir, TElDataStorageObjectList Objects);
    StringArray List(string Path);
    StringArray List(TElDropboxDataStorageObject Dir);

[VB.NET]
    Sub List(ByVal Path As String, ByVal Objects As TElDataStorageObjectList)
    Sub List(ByVal Dir As TElDropboxDataStorageObject, ByVal Objects As TElDataStorageObjectList)
    Function List(ByVal Path As String) As StringArray
    Function List(ByVal Dir As TElDropboxDataStorageObject) As StringArray

[Pascal]
    procedure List(const Path : string; Objects : TElDataStorageObjectList);
    procedure List(Dir : TElDropboxDataStorageObject; Objects : TElDataStorageObjectList);

[C++]
    void List(const std::string &Path, TElDataStorageObjectList &Objects);
    void List(const std::string &Path, TElDataStorageObjectList *Objects);
    void List(TElDropboxDataStorageObject &Dir, TElDataStorageObjectList &Objects);
    void List(TElDropboxDataStorageObject *Dir, TElDataStorageObjectList *Objects);

[PHP]
    void List(string $Path, TElDataStorageObjectList $Objects)
    void List(TElDropboxDataStorageObject $Dir, TElDataStorageObjectList $Objects)
    void List(TElDataStorageObjectList $Objs)

Parameters

  • Dir - the directory which contents is needed.
  • Objects - this parameter contains the return value, the list of objects in the directory.
  • Path - path to the directory which contents is needed.
  • Objs - ...

Return value

    Returns the list of objects in the specified directory.

Description

    Use this method when you need to list directory contents.

See also:     ListRevisions     ObjectExists     Search     PickMetadataOnList    

Discuss this help topic in SecureBlackbox Forum