Search found 14 matches

by defc
Thu Mar 21, 2024 5:15 am
Forum: Support
Topic: Excluding folders from being indexed not working with CLI
Replies: 7
Views: 1478

Re: Excluding folders from being indexed not working with CLI

external drives can get mapped to same drive letter Specifically set a drive letter to specific (external) drives. And if set to a high enough letter (such that letter collisions aren't apt to occur), the drive letter will (essentially) be static. (Alternatively, USBDLM - USB Drive Letter Manager f...
by defc
Wed Mar 20, 2024 5:38 pm
Forum: Support
Topic: Excluding folders from being indexed not working with CLI
Replies: 7
Views: 1478

Re: Excluding folders from being indexed not working with CLI

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 st...
by defc
Tue Mar 12, 2024 12:14 am
Forum: Support
Topic: Excluding folders from being indexed not working with CLI
Replies: 7
Views: 1478

Excluding folders from being indexed not working with CLI

I am using the following script - src of index.cmd set excludeFolders="dev;scrapbook;tmp" set excludeFiles="*.tmp;thumbs.db;*.bak" start everything64.exe -nodb -instance Catalog -create-file-list external_drive.efu f:\ -create-file-list-exclude-files %excludeFiles% -create-file-l...
by defc
Wed Feb 28, 2024 2:07 am
Forum: Development, plugins and third party software
Topic: How is Everything so efficient?
Replies: 11
Views: 31757

Re: How is Everything so efficient?

I think one of the keys is this is still in c++. I actually don't even know if it uses an in-memory db or custom data structures, they must be getting flushed to disk pretty frequently too, plus it has to keep updating them with Windows fs events. I bet the current view stores a list a of affected n...
by defc
Fri Jul 15, 2022 5:11 am
Forum: Everything 1.5 Alpha
Topic: Everything development paused for two months
Replies: 21
Views: 12705

Re: Everything development paused for two months

As others have said, hope you get paid a lot.

And thank you again for this amazing software. You may call it alpha but its better than most finished software, I have absolutely no issues with it.

People like you are so rare. Good luck !!
by defc
Fri Sep 17, 2021 2:45 am
Forum: Everything 1.5 Alpha
Topic: Requests/questions about 1.5
Replies: 2
Views: 3499

Requests/questions about 1.5

I'm trying to use Everything as m primary search tool as well as disc cataloger, as I find it works wonderfully in that capacity. With 1.5's new features it is even better. I posted previously about how I use it - https://www.voidtools.com/forum/viewtopic.php?f=10&t=9064&p=31467#p31467 A few...
by defc
Sat Jun 20, 2020 9:10 pm
Forum: Support
Topic: behavior of index_folder_size?
Replies: 2
Views: 4211

Re: behavior of index_folder_size?

Thanks for the explanation, void!
by defc
Thu Jun 18, 2020 4:47 am
Forum: Support
Topic: behavior of index_folder_size?
Replies: 2
Views: 4211

behavior of index_folder_size?

I am using following command to generate the efu file :- everthing.exe -nodb -config myefu.ini -create-file-list d.efu d:\ The .ini file is :- [Everything] allow_http_server=0 allow_etp_server=0 run_as_admin=0 run_in_background=0 check_for_updates_on_startup=0 auto_include_fixed_volumes=0 auto_inclu...
by defc
Mon Jun 01, 2020 11:13 pm
Forum: Development, plugins and third party software
Topic: Is is possible to use Everything SDK from Nodejs?
Replies: 3
Views: 20406

Re: Is is possible to use Everything SDK from Nodejs?

Thank you, thats very helpful. I will try this out as soon as I get some time. I've read on this forum that the SDK is not going to be as fast as the app itself, due to overhead of IPC, but we'll see.
by defc
Sun May 31, 2020 9:30 pm
Forum: Development, plugins and third party software
Topic: My scripts to catalog and browse multiple drives
Replies: 4
Views: 23468

Re: My scripts to catalog and browse multiple drives

So your script does a lot more and is obviously a bit more advanced, I'm learning a few things from it. I think I'll steal the code for drive label/enumerating (which I previously stole from stackoverflow :D) and some wmic tricks. Also I didn't now you could have exclude_folders etc in an ini file. ...
by defc
Sun May 31, 2020 8:39 pm
Forum: General
Topic: New Everything user, looking for some advice
Replies: 2
Views: 5290

Re: New Everything user, looking for some advice

NotNull wrote: Sat May 30, 2020 2:18 pm Maybe you can get some first inspiration here
Thanks! I took a first stab at some utils, posted in the dev forum, would appreciate any suggestions.
by defc
Sun May 31, 2020 6:38 pm
Forum: Development, plugins and third party software
Topic: Is is possible to use Everything SDK from Nodejs?
Replies: 3
Views: 20406

Is is possible to use Everything SDK from Nodejs?

I am a Nodejs developer and would like to use the SDK, since it can be used from Python, C# etc it shouldn't be hard but I haven't seen any examples etc.
by defc
Sun May 31, 2020 6:28 pm
Forum: Development, plugins and third party software
Topic: My scripts to catalog and browse multiple drives
Replies: 4
Views: 23468

My scripts to catalog and browse multiple drives

I've just started using Everything. I have a lot of external drives and this is a good tool to catalog them. I wrote a simple script that will catalog a attached hard drive to a efu file. I know this is already built in, what I added was to generate the file name using the drive label+serial number ...
by defc
Fri May 29, 2020 10:02 pm
Forum: General
Topic: New Everything user, looking for some advice
Replies: 2
Views: 5290

New Everything user, looking for some advice

I've used Everything before but never looked into it too much. Now I see it is a lot more powerful with cmd line, efu files etc. So I think it can be used for much more than search - it can replace disc catalog programs, folder size programs etc since all this knowledge is already stored in it (for ...