DroidMind

by hyperb1iss
Verified

file_exists

Verify the existence of a file on an Android device by specifying the device serial number and file path. Returns True if the file exists, False otherwise.

Instructions

Check if a file exists on the device.

Args: serial: Device serial number path: Path to the file on the device

Returns: True if the file exists, False otherwise

Input Schema

NameRequiredDescriptionDefault
pathYes
serialYes

Input Schema (JSON Schema)

{ "properties": { "path": { "title": "Path", "type": "string" }, "serial": { "title": "Serial", "type": "string" } }, "required": [ "serial", "path" ], "title": "file_existsArguments", "type": "object" }
ID: p03zdsi6ol