# Listing Python files in directory (2026-03-10 16:07Z)
_**User**_
List all Python files in the directory T:\Dynamic-Link-Manager and its subdirectories. Use the Get-ChildItem PowerShell command to find all .py files recursively. Return the full paths of all Python files found.
---
_**Agent (model accounts/fireworks/models/kimi-k2p5, mode Agent)**_
---
Thought Process
The user wants me to list all Python files in the T:\Dynamic-Link-Manager directory and its subdirectories using PowerShell's Get-ChildItem command. I'll execute this command to find all .py files recursively.
---
I'll run the PowerShell command to find all Python files recursively in that directory.
---
Tool use: **run_terminal_command_v2** • Run command: Get-ChildItem -Path "T:\Dynamic-Link-Manager" -Recurse -Filter "*.py" | Select-Object -ExpandProperty FullName
```bash
Get-ChildItem -Path "T:\Dynamic-Link-Manager" -Recurse -Filter "*.py" | Select-Object -ExpandProperty FullName
```
```
T:\Dynamic-Link-Manager\__init__.py
T:\Dynamic-Link-Manager\ops\__init__.py
T:\Dynamic-Link-Manager\ops\fk_rotations.py
T:\Dynamic-Link-Manager\ops\library.py
T:\Dynamic-Link-Manager\ops\migrator.py
T:\Dynamic-Link-Manager\ops\tweak_tools.py
T:\Dynamic-Link-Manager\ui\__init__.py
T:\Dynamic-Link-Manager\ui\operators.py
T:\Dynamic-Link-Manager\ui\panels.py
T:\Dynamic-Link-Manager\ui\preferences.py
T:\Dynamic-Link-Manager\ui\properties.py
T:\Dynamic-Link-Manager\utils\__init__.py
```
---
Thought Process
The command executed successfully and found 11 Python files in the T:\Dynamic-Link-Manager directory and its subdirectories. I'll present these results to the user in a clear format.
---
Found **11 Python files** in `T:\Dynamic-Link-Manager`:
```
T:\Dynamic-Link-Manager\__init__.py
T:\Dynamic-Link-Manager\ops\__init__.py
T:\Dynamic-Link-Manager\ops\fk_rotations.py
T:\Dynamic-Link-Manager\ops\library.py
T:\Dynamic-Link-Manager\ops\migrator.py
T:\Dynamic-Link-Manager\ops\tweak_tools.py
T:\Dynamic-Link-Manager\ui\__init__.py
T:\Dynamic-Link-Manager\ui\operators.py
T:\Dynamic-Link-Manager\ui\panels.py
T:\Dynamic-Link-Manager\ui\preferences.py
T:\Dynamic-Link-Manager\ui\properties.py
T:\Dynamic-Link-Manager\utils\__init__.py
```
---