Skip to content

PowerShell quirk 2

tl;dr

Let's say you have a File[1].txt file and you would like to read it.

Get-Content "File[1].txt"
^ this returns nothing

Why?

PowerShell interprets [] as special characters. A range in this case. PowerShell is actually looking for a file named File1.txt.

What to do?

Get-Content "File``[1``].txt"

longer reads