CopyFile
Copy a file from a source to a destination.
To copy the file named Guidelines.txt which is situated in the root of the container to the folder Sales with the new name Guidelines renamed.txt use the stored procedure like this:
EXEC CopyFile SourcePath=[Guidelines.txt], DestinationPath=[Sales/Guidelines renamed.txt]
Input
Name | Type | Description |
SourcePath | String | Required. The path of the file which will be copied. |
DestinationPath | String | Required. The path of the file where it will be copied. |
Result Set Columns
Name | Type | Description |
Success | String | Determines if the operation was successful or not. |