Page 1 of 1

Few questions about Customize File Associations

Posted: 05 Feb 2013 09:15
by EvilVirus
Hi.
I use Customize File Associations as follows:

Code: Select all

C:\test\01 - test\*.tf>C:\Programs\Notepad++\notepad++.exe
And it work.

Code: Select all

C:\test\[01] - test\*.tf>C:\Programs\Notepad++\notepad++.exe
But it does not work.

Perhaps the characters "[" and "]" in folder name is a problem.

I do something wrong?

And one more question.

Can I somehow use the construction of this kind:

Code: Select all

*\01 - test\*.tf>C:\Programs\Notepad++\notepad++.exe

Re: Few questions about Customize File Associations

Posted: 05 Feb 2013 09:38
by admin
The open square bracket is a special character in wildcard patterns. To use it literally (as normal character) you have to put it within square brackets: [[]

Re: Few questions about Customize File Associations

Posted: 05 Feb 2013 13:43
by EvilVirus
Thanks.