Everything will recursively scan all folders.
Folders matching your exclude filter are not scanned.
Scanning a folder will find
all child files/folders.
This is the slow part.
Setting a file filter will not help performance.
A file filter will simply exclude files from your EFU output, they are still scanned.
For the best performance, exclude as many folders as possible.
The following worked as expected for me:
Code: Select all
set excludeFolders="dev;scrapbook;tmp"
set excludeFiles="*.tmp;thumbs.db;*.bak"
start everything64.exe -create-file-list external_drive.efu f:\ -create-file-list-exclude-files %excludeFiles% -create-file-list-exclude-folders %excludeFolders%
(dev, scrapbook and tmp folders were never scanned)
-no-db and -instance are ignored when using -create-file-list
-create-file-list does not create an Everything instance.