HI,
I was trying to export current file list from the command line but i did not found any way to get the current result being exported from command line.
I do it with export and efu selection but i would like a command line switch to get the current result exported from current UI instance.
B.R.
-export-filelist command line switch
Re: -export-filelist command line switch
Please try the Command Line Interface: ES
ES talks to the main Everything UI.
ES.exe "my search" -export-efu out.efu
ES
ES Help
-export-efu <output-filename.efu>
ES talks to the main Everything UI.
ES.exe "my search" -export-efu out.efu
ES
ES Help
-export-efu <output-filename.efu>
Re: -export-filelist command line switch
I already use "es" to do one shot "search" and exports. The issue is to get current result from the UI and not do any search anymore.
When i use the UI do do a more dynamic search and i would like to call from outside (command line) or inside with plugin sdk to export current result.
I do not want to open export menu, navigate to a folder and then save my file.
I can do it/automate with AHK, powerpro, auto-it but most scripting language will be banned (company policy).
When i use the UI do do a more dynamic search and i would like to call from outside (command line) or inside with plugin sdk to export current result.
I do not want to open export menu, navigate to a folder and then save my file.
I can do it/automate with AHK, powerpro, auto-it but most scripting language will be banned (company policy).
Re: -export-filelist command line switch
Everything doesn't have a feature to do this.
What about reading the listview from powershell:
https://social.technet.microsoft.com/Forums/en-US/9b012450-bd64-468e-b163-d52f08bd1d61/powershell-gui-how-to-get-selected-items-from-listview-box?forum=ITCG
What about reading the listview from powershell:
https://social.technet.microsoft.com/Forums/en-US/9b012450-bd64-468e-b163-d52f08bd1d61/powershell-gui-how-to-get-selected-items-from-listview-box?forum=ITCG
Re: -export-filelist command line switch
This is why this is a suggestion.
using :curent_ui_result: from EV or TC would be great or at least something you can expose via API in plugin SDK (some progress ?)
Reading UI element is something i would like to avoid, it is to me very ugly solution !
using :curent_ui_result: from EV or TC would be great or at least something you can expose via API in plugin SDK (some progress ?)
Reading UI element is something i would like to avoid, it is to me very ugly solution !
Re: -export-filelist command line switch
Thank you for the suggestion nspp,
I will take your suggestion into consideration.
-current_ui_result from ES is a good idea.
Manipulating results or getting the current UI results from the SDK is on my TODO list.
I will take your suggestion into consideration.
-current_ui_result from ES is a good idea.
Manipulating results or getting the current UI results from the SDK is on my TODO list.
Re: -export-filelist command line switch
In Total Commander forum we made a AHK script which stores the GUI result into a file.nspp wrote: ↑Wed Oct 13, 2021 9:22 am I already use "es" to do one shot "search" and exports. The issue is to get current result from the UI and not do any search anymore.
When i use the UI do do a more dynamic search and i would like to call from outside (command line) or inside with plugin sdk to export current result.
I do not want to open export menu, navigate to a folder and then save my file.
I can do it/automate with AHK, powerpro, auto-it but most scripting language will be banned (company policy).
You can strip down it for your purpose and compile it.
https://www.ghisler.ch/board/viewtopic.php?t=75439
Re: -export-filelist command line switch
I'll just note, Nirsoft's SysExporter - Export data from Windows controls.
You can do something like (via command-line, output to comma delimited file):
Various options & depending on data size could take some time to output...
You can do something like (via command-line, output to comma delimited file):
Code: Select all
sysexp.exe /class SysListView32 /scomma out_list.csv