list_files
Browse repository contents by listing files and directories at a specified path within Azure DevOps projects to manage codebase structure.
Instructions
Lists files in a repository at a specified path.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The path to list files from. | |
project | Yes | The name or ID of the project. | |
repository_id | Yes | The name or ID of the repository. |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to list files from.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"repository_id": {
"description": "The name or ID of the repository.",
"type": "string"
}
},
"required": [
"project",
"repository_id",
"path"
],
"type": "object"
}