PowerShell quirk 2
tl;dr
Let's say you have a File[1].txt
file and you would like to read it.
Why?
PowerShell interprets []
as special characters. A range in this case. PowerShell is actually looking for a file named File1.txt
.
What to do?
Let's say you have a File[1].txt
file and you would like to read it.
Why?
PowerShell interprets []
as special characters. A range in this case. PowerShell is actually looking for a file named File1.txt
.
What to do?