get_track_file_path
Retrieve the file system path of a specific track by providing its unique track identifier in rekordbox DJ database. Access file path details for efficient track management and organization.
Instructions
Get the file system path for a specific track.
Args: track_id: The unique track identifier
Returns: Dictionary containing file path information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
track_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"track_id": {
"title": "Track Id",
"type": "string"
}
},
"required": [
"track_id"
],
"type": "object"
}