Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.List

TElDropboxDataStorage     See also     


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


Retrieves the list of objects in the specified directory.

Declaration

[C#]
    void List(string Path, TElDataStorageObjectList Objects);
    void List(TElDropboxDataStorageObject Dir, TElDataStorageObjectList Objects);
    String[] List(string Path);
    String[] List(TElDropboxDataStorageObject Dir);
    void List(TElDataStorageObjectList Objs);

[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 String[]
    Function List(ByVal Dir As TElDropboxDataStorageObject) As String[]
    Sub List(ByVal Objs As TElDataStorageObjectList)

[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)

[Java]
    String[] list(TElDropboxDataStorageObject Dir);
    void list(String Path, TElDataStorageObjectList Objects);
    void list(TElDropboxDataStorageObject Dir, TElDataStorageObjectList Objects);
    String[] list(String Path);

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