Wildcard not expanded on powershell

Cress - May 21 '23 - - Dev Community

What we want to do

python myapp.py folder/*.txt

Correct usage

python myapp.py (Get-Item folder/*.txt)

. . . . . . . .