Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveDataStorage.MoveObject

TElGoogleDriveDataStorage     See also     


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


Moves a data object.

Declaration

[C#]
    void MoveObject(TElGoogleDriveDataStorageObject Obj, TElGoogleDriveFolder Destination);
    void MoveObject(TElGoogleDriveDataStorageObject Obj, TElGoogleDriveFolder[] Destinations);

[VB.NET]
    Sub MoveObject(ByVal Obj As TElGoogleDriveDataStorageObject, ByVal Destination As TElGoogleDriveFolder)
    Sub MoveObject(ByVal Obj As TElGoogleDriveDataStorageObject, ByVal Destinations As TElGoogleDriveFolder[])

[Pascal]
    procedure MoveObject(Obj: TElGoogleDriveDataStorageObject; Destination: TElGoogleDriveFolder);
    procedure MoveObject(Obj: TElGoogleDriveDataStorageObject; Destinations: array of TElGoogleDriveFolder);

[C++]
    void MoveObject(TElGoogleDriveDataStorageObject &Obj, TElGoogleDriveFolder &Destination);
    void MoveObject(TElGoogleDriveDataStorageObject *Obj, TElGoogleDriveFolder *Destination);
    void MoveObject(TElGoogleDriveDataStorageObject &Obj, const std::vector<TElGoogleDriveFolderHandle> &Destinations);
    void MoveObject(TElGoogleDriveDataStorageObject *Obj, const std::vector<TElGoogleDriveFolderHandle> &Destinations);

[PHP]
    void MoveObject(TElGoogleDriveDataStorageObject $Obj, TElGoogleDriveFolder $Destination)
    void MoveObject(TElGoogleDriveDataStorageObject $Obj, array of TElGoogleDriveFolder|NULL &$Destinations)

[Java]
    void moveObject(TElGoogleDriveDataStorageObject Obj, TElGoogleDriveFolder Destination);
    void moveObject(TElGoogleDriveDataStorageObject Obj, TElGoogleDriveFolder[] Destinations);

Parameters

  • Obj - the object (file or folder) to be moved.
  • Destination - the destination folder.
  • Destinations - you can specify multiple destination folders via this parameter.

Description

    Call this method to move the object to another folder (folders).

See also:     CopyObject     RenameObject    

Discuss this help topic in SecureBlackbox Forum