How to use internal file associations effectively

English support forum

Moderators: white, Hacker, petermad, Stefan2

sgp
Senior Member
Senior Member
Posts: 355
Joined: 2005-01-31, 16:04 UTC

How to use internal file associations effectively

Post by *sgp »

How to use internal file associations effectively

wiki tutorial

[face=garamond]2012-05-12 edit: Wiki Tutorial updated. Please note that I no longer update the description below. Instead all updates are included just in the wiki tutorial linked above.[/face]
Update history:
2012-05-12
Added example of right-click menu for folders.

------
Older post:

Minimum TC version 7.55 required.

I think that TC users who also use portable applications should be aware of TC’s internal file association features, which makes using portable applications fun and easy. You can double-click a data file, say a .JPG file, to open it in its internally associated portable application, say IrfanView (your choice of portable freeware). While one can use TC’s menus to create and manage internal file associations, this post shows how to edit .INI configuration files directly.

So let’s start with the first step, which is to separate out the relevant .INI sections into their own file. By so doing, you end up with a self-contained set of definitions, which you could easily swap in and out of TC by simply renaming a file. We will name this file “associations-searches.INI”.

STEP 1 – create searches-associations.INI
Explore TC’s configuration folder, where file wincmd.INI is located.
Create a new file named associations-searches.INI in that folder.
Open wincmd.INI and locate section [Searches].
- Copy the whole section from wincmd.INI to associations-searches.ini.
- Replace the whole section in wincmd.INI with these lines:

Code: Select all

[Searches]
RedirectSection=associations-searches.INI
Do the same with section [Associations] in wincmd.INI – If you do not find such a section in wincmd.INI still make sure to add these lines to wincmd.INI:

Code: Select all

[Associations]
RedirectSection=associations-searches.INI
Save wincmd.INI, keep associations-searches.INI open.
end of step 1

Let me point out that from now on every time you add a new search to TC that search will end up into associations-searches.INI, even though this search might not be linked to an internal file association.

The next step involves creating a new sample search, which we do want to link to an internal file association. Continuing on the .JPG example, we will create a search named image in step 2.

STEP 2 – create search “image”.INI
Edit section [Searches] of file associations-searches.INI and add the following lines:

Code: Select all

image_SearchFor=*.bmp *.gif *.jpg *.png *.psd *.tif
image_SearchIn=
image_SearchText=
image_SearchFlags=0|000002000020|||||||||0000
Save associations-searches.INI and restart TC.
end of step 2

The new search becomes available under the name image in several TC dialogs, including the search dialog, but that isn’t why we created it. The main reason for creating this new search is to deal with a set of file extensions (bmp, gif, jpg, png, psd, tif) all at once by associating what Windows calls their file type with an application, like step 3 shows.

STEP 3 - associate “image” with IrfanView.INI
Edit section [Associations] of file associations-searches.INI and add the following lines:

Code: Select all

[Associations]
Filter1=>image
Filter1_open=""%commander_path%\..\IrfanView\i_view32.exe" "%1""
Save associations-searches.INI and keep it open.
end of step 3

Note two important points:
You should substitute Filter1 with FilterN+1 if your searches-associations.INI file already includes other N filters, that is, use Filter3 for your new image association if there already are Filter1= and Filter2= lines in your .INI file.
We have used %commander_path%\..\IrfanView\ to specify a relative folder path from TC’s own portable folder. This example assumes that TC’s folder is a sibling of IrfanView’s folder inside your main folder of portable applications.

Now you should verify that when you right click the icon of a .JPG or .PNG file TC’s menu shows Open (internal), which opens the file with IrfanView. Likewise, when you double-click an image file icon IrfanView should open.

Note that you only need to restart TC when you change section [Searches].

Let’s now see how you can associate a second (third, etc…) application to your image type. We will use FastStone Image Viewer (portable freeware).

STEP 4 - associate “image” with FastStone Viewer.INI
Edit section [Associations] of file associations-searches.INI and add the following line:

Code: Select all

Filter1_open-FSViewer=""%commander_path%\..\FSViewer\FSViewer.exe" "%1""
Save associations-searches.INI and keep it open.
end of step 4

Again, you should substitute the right FilterN+1 for Filter1 in the example. Also, we have assumed that folder FSViewer is a sibling of TC’s own folder inside your main folder of portable applications.

You should now verify that when you right click a .JPG or .PNG file icon TC’s menu shows open-FSViewer (internal), which open the image file with FastStone Image Viewer. You may add more applications for the image file type by repeating step 4 for each application.

Let’s finish up our example by changing the icon that TC displays for the image file type. We will change it from IrfanView’s icon to FastStone’s.
STEP 5 - change “image” file type icon.INI

Edit section [Associations] of file associations-searches.INI and add the following line:

Code: Select all

Filter1.icon=%commander_drive%\Portables\FSViewer\FSViewer.EXE
Save associations-searches.INI and restart TC.
end of step 5

When you change an icon you need to restart TC. Note that in step 5 we have used %commander_drive%\Portables\FSViewer\ instead of %commander_path%\..\FSViewer\ which we used in step 4. The two paths must lead to the same folder.

You can now add more file types and associated applications by repeating steps 2-5.

Tips for effective use of internal associations

1. I like to keep the definition of a file type search and its corresponding file associations together, this way:

Code: Select all

[Searches]
; ----- image
;FilterX=>image
;FilterX_open=""%commander_path%\..\IrfanView\i_view32.exe" "%1""
;FilterX_open-FSViewer=""%commander_path%\..\FSViewer\FSViewer.exe" "%1""
;FilterX.icon=%commander_drive%\Portables\FSViewer\FSViewer.EXE
image_SearchFor=*.bmp *.gif *.jpg *.png *.psd *.tif
image_SearchIn=
image_SearchText=
image_SearchFlags=0|000002000020|||||||||0000
[Associations]
At this point, only the search for an image is defined, there is no internal association yet. To add an association append the four FilterX lines to section [Associations], delete the initial semicolon character, and replace X with the correct sequence number. This way of organizing your associations-searches.INI file is tidier when you need to renumber entries as in the next paragraph.

2. To renumber (sort the order of) associations use TC’s File/internal associations dialog (drag and drop to sort items). Remember that when you double-click a file icon TC starts the application that is internally associated with the first file type (search) that matches the file extension.

3. Use %commander_path% and %commander_drive% as the situation dictates. There are some portable programs out there that get confused when you use ..\ in the path. Such programs may not start correctly if you use %commander_path% but may start just fine if you use %commander_drive%, which usually doesn’t need to include ..\ path segments.

4. I am in the habit of writing .INI entries this way:

Code: Select all

Filter1_open=""%commander_drive%\path with spaces\app.exe" /option=value "%1""

Notice the numerous double-quotes. They are essential. The exterior left and write quotes match each other and enclose the whole item, which consists of three words: a quoted application path (with spaces), an option, and a quoted document path. In some cases you might need to write option="value" or even "/option=value" (quote the whole thing).
Last edited by sgp on 2012-05-12, 20:47 UTC, edited 2 times in total.
User avatar
ghisler(Author)
Site Admin
Site Admin
Posts: 48021
Joined: 2003-02-04, 09:46 UTC
Location: Switzerland
Contact:

Post by *ghisler(Author) »

Nice tutorial, thanks! It would be nice if you could put it also in our Wiki:
http://www.ghisler.ch/wiki/index.php/Main_Page

Anyone who has a forum account can use the same user name and password for the Wiki.
Author of Total Commander
https://www.ghisler.com
User avatar
fenix_productions
Power Member
Power Member
Posts: 1979
Joined: 2005-08-07, 13:23 UTC
Location: Poland
Contact:

Post by *fenix_productions »

@ghisler(Author)
ghisler(Author) wrote:Anyone who has a forum account can use the same user name and password for the Wiki.
Not true for me. AFAIR I've been always seeing:
TotalcmdWiki wrote:Login error
There is no user by the name "fenix_productions". Check your spelling.
It may be related to an underscore in my nickname.
"When we created the poke, we thought it would be cool to have a feature without any specific purpose." Facebook...

#128099
sgp
Senior Member
Senior Member
Posts: 355
Joined: 2005-01-31, 16:04 UTC

Post by *sgp »

ghisler(Author) wrote:Nice tutorial, thanks! It would be nice if you could put it also in our Wiki
I did. Thank you for your comment! Go to Wiki Tutorial
Anyone who has a forum account can use the same user name and password for the Wiki.
It worked for me.
User avatar
ghisler(Author)
Site Admin
Site Admin
Posts: 48021
Joined: 2003-02-04, 09:46 UTC
Location: Switzerland
Contact:

Post by *ghisler(Author) »

Thanks a lot! No idea why it doesn't work for fenix_productions, it may be the underscore or user name length...
Author of Total Commander
https://www.ghisler.com
User avatar
fenix_productions
Power Member
Power Member
Posts: 1979
Joined: 2005-08-07, 13:23 UTC
Location: Poland
Contact:

Post by *fenix_productions »

"When we created the poke, we thought it would be cool to have a feature without any specific purpose." Facebook...

#128099
Stiltzkin
Member
Member
Posts: 182
Joined: 2004-09-10, 17:15 UTC

Post by *Stiltzkin »

is there a way to assign a different icon for every extension with this method?

currently i have every image extension (jpg, gif, png, bmp, etc...) assigned to the same programs with the exception of the icon. the icon is different for every file. but its annoying if i want to change the default program for images.

i tried to overwrite the:

FilterX=>image
FilterX_open=i_view32.exe %1
FilterX_open-FSViewer="FSViewer.exe %1"
FilterX.icon=FSViewer.EXE

with another entry in the [Associations] section:

FilterY=*.jpg
FilterY.icon=icon_jpg.ico

FilterZ=*.png
FilterZ.icon=icon_png.ico

the icon is changed but the associated application is also lost.
User avatar
MVV
Power Member
Power Member
Posts: 8702
Joined: 2008-08-03, 12:51 UTC
Location: Russian Federation

Post by *MVV »

You may specify ** as path to icon file - in this case TC will show associated in Windows icons for files that matches this internal association.
Stiltzkin
Member
Member
Posts: 182
Joined: 2004-09-10, 17:15 UTC

Post by *Stiltzkin »

ok. but this kinda defeats a part of the purpose of the internal associations.
i've also associated many files to portableapps so most of my 'windows-file-associations' are still the default. i specifically want to choose a icon per file extension.
User avatar
MVV
Power Member
Power Member
Posts: 8702
Joined: 2008-08-03, 12:51 UTC
Location: Russian Federation

Post by *MVV »

We need multiple internal associations (when multiple items can be applied to same file type) - in this case all will work as expected - e.g. a set of items will set icons and then one common item will set default application for opening theese files. This was suggested yet but wasn't realized (maybe we need to refresh that suggestion topic? :)).
User avatar
ghisler(Author)
Site Admin
Site Admin
Posts: 48021
Joined: 2003-02-04, 09:46 UTC
Location: Switzerland
Contact:

Post by *ghisler(Author) »

2fenix_productions
Unfortunately I cannot use this workaround, because otherwise users "x_y" and "x y" on the forum will share the same account on the Wiki. :(

About the icons: Indeed you will need to use different associations if you want different icons.
Author of Total Commander
https://www.ghisler.com
neverthelesshello
Member
Member
Posts: 136
Joined: 2010-02-26, 11:52 UTC

Post by *neverthelesshello »

I tried this method but it doesnt work for me.
In windows explorer my .rar files are shown with the normal WINRAR icon
I want the same in TC but cant achieve it
using you method I have this in associations-searches.ini

[Associations]
Filter1=>image
Filter1_open=""D:\PROGRAM FILES\IrfanView\i_view32.exe" "%1""
Filter1_open-Imagine=""C:\Totalcmd\plugins\Imagine_1.0.6\Imagine.exe" "%1""
Filter2=.rar
Filter2_open=""C:\Program Files\WinRAR\WinRAR.exe" "%1""
Filter2.icon=C:\Program Files\WinRAR\WinRAR.exe

--------------------------------------
trouble is it doesnt have any effect, I still get the TC icon for a zipped file
What you dont see is what you get!
User avatar
MVV
Power Member
Power Member
Posts: 8702
Joined: 2008-08-03, 12:51 UTC
Location: Russian Federation

Post by *MVV »

neverthelesshello, you can't use internal associations (at least in TC 7.55 and earlier) to change default archive icon which is set by TC. This was discussed many times (e.g. here and here).
neverthelesshello
Member
Member
Posts: 136
Joined: 2010-02-26, 11:52 UTC

Post by *neverthelesshello »

Thats a pity, hmm, resourcehacker?
ok I suppose thats not allowed, shouldnt there be a different default icon then?
I mean having the same icon for zip and rar files isnt that great they should have their own icon.
What you dont see is what you get!
User avatar
petermad
Power Member
Power Member
Posts: 14739
Joined: 2003-02-05, 20:24 UTC
Location: Denmark
Contact:

Post by *petermad »

hmm, resourcehacker?
TC will stop working if you change totalcmd.exe.

IIRC you can use custom icons if you disable: "Configuration" -> "Packer" -> "Treat archives like directories".
License #524 (1994)
Danish Total Commander Translator
TC 11.03 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1371a
TC 3.50b4 on Android 6 & 13
Try: TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Post Reply