adb_pull_file
Use this tool to transfer files from an Android device to a local system by specifying the remote file path. Optionally, provide a local path and device ID for precise file management.
Instructions
Pull a file from device to local system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | No | Device ID (optional) | |
localPath | No | Local file path (optional) | |
remotePath | Yes | Remote file path on device |
Input Schema (JSON Schema)
{
"properties": {
"deviceId": {
"description": "Device ID (optional)",
"type": "string"
},
"localPath": {
"description": "Local file path (optional)",
"type": "string"
},
"remotePath": {
"description": "Remote file path on device",
"type": "string"
}
},
"required": [
"remotePath"
],
"type": "object"
}