Page 1 of 1

More file-info...

Posted: 25 Feb 2016 12:32
by MBaas
I wonder if there is a way to get this info straight from XY or through a script?

I'd like to select a file and see the path of the app that it is linked to...(and which would open on it on dbl-click)

Re: More file-info...

Posted: 25 Feb 2016 12:42
by highend
Directly (with a few clicks for a file)? Look at Don's answer!

Via a script? Sure, simple, look up the current extension in the registry and e.g. display it in a custom column

Re: More file-info...

Posted: 25 Feb 2016 12:56
by admin
Can be done:

- right click "Open With" toolbar button
- tick Show Full Paths in "Open With" menu
- now select a file and open the"Open With" menu -- you will see what you want at the bottom

- TIP: even without ticking Show Full Paths in "Open With" menu: hold CTRL when you click the opening app in the "Open With" menu and you will jump to this app instead of opening the file

Re: More file-info...

Posted: 25 Feb 2016 12:59
by highend
So this is not about automatic displaying things but looking up each one explicitly via a few clicks? Go Don's route!

Re: More file-info...

Posted: 25 Feb 2016 13:00
by TheQwerty
For infrequent use you can look at the Open With menu (Ctrl+Alt+Enter by default) which will list all portable file associates for the current file and then in a separate section list the Windows' shell association. This is also available via a toolbar button:
2016-02-25 06_49_21-Screenshot.png
If you want to see the default verb and association you could create a script using:

Code: Select all

text Get('regcmd', <curext>);
Or a custom column to show it in the list:

Code: Select all

return Get('regcmd', <cc_ext>);
And if you'd prefer to show it in the status bar you can use an INI tweak for that:

Code: Select all

; Tweak: E.g. <curname><curver , v*>, mod <datem>
StatusBar3OnFile="<get regcmd <curext>>"

Re: More file-info...

Posted: 25 Feb 2016 13:12
by MBaas
Wow, so many cool answers and options within such a short period of time. Thanks guys, you rock! 8)
If followed Don's suggestion and applied the ini-tweak as well ;-)