Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.CreateCopyReference

TElDropboxDataStorage     See also     


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


Creates a copy_ref to a file.

Declaration

[C#]
    string CreateCopyReference(string Path);
    string CreateCopyReference(TElDropboxDataStorageObject Obj);

[VB.NET]
    Function CreateCopyReference(ByVal Path As String) As String
    Function CreateCopyReference(ByVal Obj As TElDropboxDataStorageObject) As String

[Pascal]
    function CreateCopyReference(const Path : string) : string;
    function CreateCopyReference(Obj : TElDropboxDataStorageObject) : string;

[C++]
    void CreateCopyReference(const std::string &Path, std::string &OutResult);
    void CreateCopyReference(TElDropboxDataStorageObject &Obj, std::string &OutResult);
    void CreateCopyReference(TElDropboxDataStorageObject *Obj, std::string &OutResult);

[PHP]
    string CreateCopyReference(string $Path)
    string CreateCopyReference(TElDropboxDataStorageObject $Obj)

[Java]
    String createCopyReference(TElDropboxDataStorageObject Obj);
    String createCopyReference(String Path);

Parameters

  • Obj - the object for which a copy_ref is needed.
  • Path - path to the object for which a copy_ref is needed.

Return value

    Returns a copy_ref reference to the object.

Description

    Use this method to request a reference to the file which can be used to copy the file to another user's Dropbox. To create such a copy, use CopyFromObjectRef method.

See also:     CopyObjectFromRef    

Discuss this help topic in SecureBlackbox Forum