Discuss this help topic in SecureBlackbox Forum

TElOneDriveDataStorage.RenameObject

TElOneDriveDataStorage     See also     


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


Renames a data object.

Declaration

[C#]
    void RenameObject(TElOneDriveDataStorageObject Obj, string NewName);

[VB.NET]
    Sub RenameObject(ByVal Obj As TElOneDriveDataStorageObject, ByVal NewName As String)

[Pascal]
    procedure RenameObject(Obj: TElOneDriveDataStorageObject; const NewName: string);

[C++]
    void RenameObject(TElOneDriveDataStorageObject &Obj, const std::string &NewName);
    void RenameObject(TElOneDriveDataStorageObject *Obj, const std::string &NewName);

[PHP]
    void RenameObject(TElOneDriveDataStorageObject $Obj, string $NewName)

[Java]
    void renameObject(TElOneDriveDataStorageObject Obj, String NewName);

Parameters

  • Obj - the object to be renamed.
  • NewName - the new name for the object.

Description

    Call this method to rename a file or folder.

See also:     CopyObject     MoveObject    

Discuss this help topic in SecureBlackbox Forum