mqscript_file_copy
Copy files between locations on mobile devices using MQScript automation, with optional overwrite control for destination files.
Instructions
Copy file
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| destinationPath | Yes | Destination file path | |
| overwrite | No | Overwrite destination if exists | |
| sourcePath | Yes | Source file path | 
Input Schema (JSON Schema)
{
  "properties": {
    "destinationPath": {
      "description": "Destination file path",
      "type": "string"
    },
    "overwrite": {
      "default": false,
      "description": "Overwrite destination if exists",
      "type": "boolean"
    },
    "sourcePath": {
      "description": "Source file path",
      "type": "string"
    }
  },
  "required": [
    "sourcePath",
    "destinationPath"
  ],
  "type": "object"
}