Logo

View the Project on GitHub elements-storage/elements-sdk-python

FileCopyEndpointRequest

Properties

Name Type Description Notes
input [str] Filesystem paths to operate on.  
destination str Destination directory to copy the inputs into.  
hardlink bool When true, create hardlinks instead of copying file data where possible. [optional]
sync bool When true, wait for the copy to finish before responding instead of running it as a background task. [optional]
overwrite str How to handle a file that already exists at the destination: skip (Overwrite.SKIP), `Overwrite.WARN`, keep both by appending a `Overwrite.NUMBER` or `Overwrite.TIMESTAMP`, or `Overwrite.OVERWRITE` it. [optional]
folders str How to handle copying folders: merge contents into existing folder (`FolderCopyBehaviour.MERGE`) or rename the new folder (`FolderCopyBehaviour.RENAME`). Note that `Overwrite.OVERWRITE` logic will still be applied to individual files in both cases. [optional]

[Back to Model list] [Back to API list] [Back to README]