Skip to main content

We've Moved!

Product Documentation has moved to docs.hitachivantara.com
Hitachi Vantara Knowledge

Clone a file system file

Clones a file system file.

HTTP request syntax (URI)
POST <base_URI>/v8/storage/filesystems/{filesystemId}/clone-file
Parameters
Name Type Required Values Description
filesystemId URI_PARAM Y string Either the file system object ID or HNAS file system ID.
srcFile BODY Y string Source absolute path of the file to be cloned. The path should be in UNIX format.
dstFile BODY Y string Destination absolute path of the cloned fiile. The path should be in UNIX format.
Return codes
Code Data Description
204 No Data File system file clone completed successfully
400 Error Message Missing or invalid request contents.
403Error MessageOperation forbidden by access level.
404 Error Message Requested resource not found.
500 Error message Error associated with the storage system.

Any HTTP status code other than 204 indicates that the API did not complete successfully.

Request example 1: Clone a file using the file system object ID
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.57.75:8444/v8/storage/filesystems/4141453043393746413838393331303630303030303030303030303030303030/clone-file -d ‘{"srcFile":"/xyz-src-submit-tree-clone-job/readme","dstFile":"/xyz-0825-clone-file-dest"}’ -X POST
Request example 2: Clone a file using the HNAS storage file system ID
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.57.75:8444/v8/storage/filesystems/864DC6E1DFB68C210000000000000000/clone-file -d ‘{"srcFile":"/xyz-src-submit-tree-clone-job/readme","dstFile":"/xyz-0825-clone-file-dest"}’ -X POST
Response example: Both requests produce the same response
HTTP/1.1 204 No Content 

 

  • Was this article helpful?