Everything Efu ExplorerA helper tool to explore/browse folders in .efu files in Everything.
Similar to folder navigation in Windows Explorer.
Useful for browsing indexes of offline drives.
Download page and up to date instructions for setup and use:
https://www.dcmember...ything-efu-explorer/feature request wareeverything_efu_explorer is "feature request ware". I hope the Everything developer likes it and makes these features native.
WishlistI wish Everything had a hotkey to change the window background color, to signal that efu browse mode is started. The Everything.ini file has a normal_background_color variable but edits to the ini only have effect when Everything is closed, so that can't be used to quickly toggle a background color on/off.
BackgroundEverything is a very fast file and folder search engine - a great program! It can save search results to
.efu file lists for later use.
When a .efu file is loaded Everything lists all files/folders in the index matching the search string. But it can be useful to browse a drive index folder by folder, like when navigating through folders in Explorer. That is what Everything Efu Explorer enables. This makes it more convenient to use Everything as a cataloger for offline drives or discs.
efu_make - a companion script to automatically save drive indexes to .efu file list files. 180223 new version of efu_make works with changed command line syntax in never versions of ES.exe
;efu_make by Nod5
;a helper tool to index drives to Everything .efu files
;SETUP
;- install Autohotkey, https://www.autohotkey.com/
;- install Everything 1.4.1.895 , https://www.voidtools.com/
;- download es.exe 1.1.0.9 , https://www.voidtools.com/downloads/
;- save script as efu_make.ahk , compile to efu_make.exe
;- place es.exe in the same folder as efu_make.exe
;USAGE
;run efu_make from the command line with a string of drive letters as parameter
;example: C:\folder\efu_make.exe CFG
;example output: C:\folder\YYMMDD_C.efu , ... _F.efu , ... _G.efu
drives = %1%
{
Tooltip, make new
.efu
... %A_LoopField% , 400, 200 ;old ES efu export syntax
;RunWait, "%A_Scriptdir%\es.exe" "%A_LoopField%:\" -efu "%A_ScriptDir%\%stamp%_%A_LoopField%.efu" -p -s ,, Min
;new ES efu export syntax
RunWait, "%A_Scriptdir%\es.exe" -export
-efu
"%A_ScriptDir%\%stamp%_%A_LoopField%.efu" "%A_LoopField%:\",, Min
}
Tooltip, make new
.efu
... done!
, 400, 200