get_tree_directory_from_path
Generate a formatted directory tree filtered by programming language, displaying line counts for each file.
Instructions
Generate a tree directory structure as a string, excluding files and directories
based on the specified programming language using regex patterns.
Args:
path: The root path to start generating the tree from
language: The programming language to filter files. Possible values: ["python", "javascript", "java", "go", "ruby", "rust", "csharp", "generic"]
Returns:
A formatted string representing the directory tree with line counts for each file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| language | Yes |