Happy to help!

Moderators: Hacker, petermad, Stefan2, white
2tuskatuska wrote: 2021-10-13, 00:15 UTC 2Ovg
I would also like to mention that the use of a button with command: cm_ToggleAutoViewModeSwitch
(cm_ToggleAutoViewModeSwitch 2947 Turn automatic view mode switching on/off)
is recommended before entering this directory: c:\tools\wincmd\scripts\ (only example!) - line in the AHK script:Code: Select all
DestinationFile=c:\tools\wincmd\scripts\Everything.txt
Well, at the moment I still like to have control over whether the transfer of the search result in EverythingHorst.Epp wrote: 2021-10-13, 06:18 UTC2tuskatuska wrote: 2021-10-13, 00:15 UTC 2Ovg
I would also like to mention that the use of a button with command: cm_ToggleAutoViewModeSwitch
(cm_ToggleAutoViewModeSwitch 2947 Turn automatic view mode switching on/off)
is recommended before entering this directory: c:\tools\wincmd\scripts\ (only example!) - line in the AHK script:Code: Select all
DestinationFile=c:\tools\wincmd\scripts\Everything.txt
That is not needed at all.
The idea is that this dir triggers the loading of the results and is only used for this purpose.
So its empty and there is never a need to enter it.
You should not make things overcomplicated![]()
Code: Select all
Everything search: ext:bmp
- Everything ....: 5 431 objects
- EV-Results.txt : 5 431 objects
- Error message after execution of the AHK script: "File not found! (17x)"
- Total Commander: 5 409 files
Difference ......: 22 files
Code: Select all
| Instance | AltGr+S (QAP must be open!) ** | AltGr+D (QAP must be open!) *** |
| | [Ctrl+Alt+S on German keyboard] | [Ctrl+Alt+D on German keyboard] |
------------------------------------------------------------------------------------------------------------------------------
| Everything ("Main instance") | Open TC and show search results * | Open TC and show search results * |
| (Toggle window Hotkey: F11) | Everything window stays open | Everything window will be closed |
------------------------------------------------------------------------------------------------------------------------------
| Everything 1.5.0.1279a (x64) - (PRIVATE) | Open TC and show search results * | Open TC and show search results * |
| (Toggle window Hotkey: SHIFT+F11) **** | Everything window will be closed | Everything window stays open |
------------------------------------------------------------------------------------------------------------------------------
* Transferred search results from Everything on tab "Search result:" in Total Commander in "Branch View"
** QAP: AltGr+S -> Path\To\Open_Everything_GUI_results_with_TC LOADLIST.exe
*** QAP: AltGr+D -> Path\To\Open_Everything_GUI_results_with_TC LOADLIST_instances.exe
**** C:\Tools\Everything\Everything_PRIVATE\Everything64.exe -instance "PRIVATE" -startup
Everything.iniAdd trailing backslash to name for folders wrote: Everything 1.5.0.1280a - Oct 14, 2021 adds a folder_append_path_separator ini setting.
...
/folder_append_path_separator=1
...
Code: Select all
folder_append_path_separator=1
No problem, whenever your time allows.
Done. Thanks!Horst.Epp wrote: 2021-10-14, 12:38 UTC 2tuska
If you want to have the new option enabled just comment out (add a ; before each line)
the following 2 lines in the script:
If InStr(FileExist(full), "D")
full := full . "\"
Code: Select all
/folder_append_path_separator=1 ... <enter>
I don't see any double backslashes.tuska wrote: 2021-10-14, 13:40 UTC
-> Double backslash before the last folder, instead of only one backslash is still present <-
/viewtopic.php?p=406254#p406254]above[/url].
Yes, because you probably don't have this entry in your Everything.ini:
Code: Select all
folder_append_path_separator=1
In my case, the "ExportEverythingWindow.ini" is set toHorst.Epp wrote: 2021-10-14, 15:29 UTCIf you have a non standard coulumn layout
you have to define the correct numbers for the Name and Path columns in the AHK script in the line
EverythingColumnPositions=2,1
Delete the ExportEverythingWindow.ini once before the next run.
Alternativ you can provide the other column layout by editing the ExportEverythingWindow.ini.
The script only reads 2 columns of the Everything results.
I have an additional Tags column for example but this doesn't hurt the script in any way.
Code: Select all
[General]
; Where to save the output (full path)
DestinationFile=D:\Daten\Programme\TotalCommander\TCD_USB-Stick\TC32-64USB\EV-Results\EV-Results.txt
; The columns 'Name' and 'Path' must be visible in the Everything
; window. The first value is the position of the 'Path', the second
; value is the position of the 'Name' column
; Default: 2,1
EverythingColumnPositions=2,1
Code: Select all
Name|Path|Extension|Size|Date Modified|Date Created|Date Accessed|Title|Subject|Tags|Comment|Authors| --> 12 columns
2 1
Code: Select all
Name|Path|Extension|Size|Date Modified|Date Created|Date Accessed| --> 7 columns
2 1
Nice to hear.