Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Listary is an awesome file browsing & searching tool for Windows. Some of the third party reviews can be found in Listary's FAQ.

As shown in the following figure, Listary offers "Copy Folder Path to Clipboard" (The convenient "Switch to Last Opened Folder in File Manager" might be derived from this function) and "Copy Paths of Selected Items to Clipboard". Smart Shortcut

Listary seems to place certain hook into certain process to instantly monitor the directory change of the file manager (Explorer.exe) to provide "Copy Folder Path to Clipboard", and selection change to provide "Copy Paths of Selected Items to Clipboard".

I am wondering how to implement these two behaviors (in Delphi), for example, which process to hook and how to hook the very process? Any information is appreciated!

[Edit] TLama has been kind to point out Raymond's Querying information from an Explorer window. However, the behavior in the linked article seems to be active querying instead of passive listening. For example, if I open three Explorer instances and then do something else like writing in Word, can the active quering approach identify the last folder path? Listary remembers the last folder path, indicating it is passively listening to every single folder change of certain process. Furthermore, Listary works with several file managers, as shown in the following figure. I wonder if the ShellWindows approach is even available for xplorer2, TotalCmd, or DirectoryOpus? AppCompatibility

share|improve this question
2  
Just for inspiration for those having time to answer :-) I don't know if it's still valid for Vista+ systems though. – TLama Nov 15 '12 at 12:20
2  
The "ShellWindows approach" is available for anyone wanting to use it, so of course it's available for xplorer2, TotalCmd, and DirectoryOpus. – Ken White Nov 15 '12 at 13:37
@Ken White: Thank you for the helpful comment! Could you please also share your opinions about "keeping the last visited folder path" (maybe by "hook certain process to listening to certain event")? – Xichen Li Nov 15 '12 at 13:42
1  
Also just for inspiration, Filebox Extender is also a very cool tool that does similar things (technically), and it's open source, you might want to check it's c++ source code to get some ideas. Don't forget back to here to share if you do find something useful ;) – Edwin Yip Nov 15 '12 at 15:00
@Edwin Yip: Thanks you for your information! I have been using Filebox Xtender on Windows Xp but not on Windows 7. On Windows 7, The click-switch function, which I like most, causes noticeable freeze and very often does not work. The similar function of Listary works and is much smooth. Therefore, it seems the way of Listary is correct and I hesitate to dig into Filebox eXtender C++ source. – Xichen Li Nov 15 '12 at 15:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.