vote up 3 vote down star

Create a file called Valid[File].txt and stick some text in it. Start powershell and go to the directory.

gc Valid[File].txt
should display the value in the file. It returns blank. If you use tab auto-completion it escapes the name:
gc 'Valid[File].txt'
but still returns nothing.

How do I reference files with brackets in their names?

flag

50% accept rate

2 Answers

vote up 0 vote down

You probably need to enclose it in quotation marks: gc "Valid[File].txt"

link|flag
vote up 4 vote down check

Turns out the key was -literalpath. For details see this technet article

link|flag
Ouch. It's easier to install Cygwin! – Jonathan Leffler Nov 9 '08 at 8:58
@jonathan It may be easier, but on the Windows platform, PowerShell has more opportunities and "power". – Steven Murawski Nov 9 '08 at 15:48
There are known bugs with handling of brackets in filenames. It'll be fixed in v2. – halr9000 Nov 10 '08 at 1:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.