adb_list_files
Retrieve a list of files from a specified directory on an Android device using remote path and optional device ID for targeted access.
Instructions
List files in a directory on the device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | No | Device ID (optional) | |
remotePath | Yes | Remote directory path on device |
Input Schema (JSON Schema)
{
"properties": {
"deviceId": {
"description": "Device ID (optional)",
"type": "string"
},
"remotePath": {
"description": "Remote directory path on device",
"type": "string"
}
},
"required": [
"remotePath"
],
"type": "object"
}