More file-info...

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
MBaas
Posts: 692
Joined: 15 Feb 2016 21:08

More file-info...

Post 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)
____________________________________________________________________________________
Happy user. Screen scaling 100% and W11Pro [Version 10.0.26200.7922], XY 28.30.14000 * * LinkTree

highend
Posts: 14994
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: More file-info...

Post 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
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 66660
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: More file-info...

Post 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

highend
Posts: 14994
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: More file-info...

Post by highend »

So this is not about automatic displaying things but looking up each one explicitly via a few clicks? Go Don's route!
One of my scripts helped you out? Please donate via Paypal

TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Re: More file-info...

Post 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>>"
To see the attached files, you need to log into the forum.

MBaas
Posts: 692
Joined: 15 Feb 2016 21:08

Re: More file-info...

Post 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 ;-)
____________________________________________________________________________________
Happy user. Screen scaling 100% and W11Pro [Version 10.0.26200.7922], XY 28.30.14000 * * LinkTree

Post Reply