Page 1 of 1

Is it possible to tunnel custom results into a panel

Posted: 02 Feb 2015 18:21
by mydarkpassenger
I would like to take a list and compare it against a directory and tell me which files are found against the search in one tab (or which files aren't found). Is this possible or is a better method to highlight the results in a tab against the list?

Re: Is it possible to tunnel custom results into a panel

Posted: 02 Feb 2015 18:35
by highend
Possible. What's better? That depends on you (and what you want to do with the results)...

Re: Is it possible to tunnel custom results into a panel

Posted: 03 Feb 2015 16:45
by bdeshi
semi-automatic:
Main menu->select->Select items.
Paste item names. names-only or names with path - both types are supported.
[matched files are selected.]
Now exec (paste in addressbar and ENTER) this to report all matched items:

Code: Select all

::text <get selecteditemspathnames "<crlf>">;
or this to report all unmatched items:

Code: Select all

::$sel = <get selecteditemspathnames "|">;#252;$unsel = <get selecteditemspathnames "<crlf>">;selectitems $sel,,0;text $unsel;