Search found 42 matches

by bit
Thu Dec 05, 2024 6:04 pm
Forum: Everything 1.5 Alpha
Topic: Preprocessor functions passed from the command line are not well expanded since 1384a
Replies: 2
Views: 1926

Re: Preprocessor functions passed from the command line are not well expanded since 1384a

Did some research here and found the solutions:

After quoting all spaces, now working:
.\Everything64.exe -newtab -s size:[getsize:"C:\Windows\Explorer.exe"]" "[getproperty:"C:\Windows\Explorer.exe",extension]


and should not mixing different writing styles of functions, they are not being ...
by bit
Thu Dec 05, 2024 4:03 pm
Forum: Everything 1.5 Alpha
Topic: 1.5.0.1384a introduced a backward-incompatible change on command line option processing
Replies: 7
Views: 1759

Re: 1.5.0.1384a introduced a backward-incompatible change on command line option processing

void wrote: Mon Dec 02, 2024 10:02 pm What was your exact #define command line?
posted some examples in an new post: viewtopic.php?t=15899
by bit
Thu Dec 05, 2024 3:58 pm
Forum: Everything 1.5 Alpha
Topic: Preprocessor functions passed from the command line are not well expanded since 1384a
Replies: 2
Views: 1926

Preprocessor functions passed from the command line are not well expanded since 1384a

Problem still exists in 1387a.

this works:
Everything64.exe -newtab -s size:[getsize:"C:\Windows\Explorer.exe"]

this is boken:
Everything64.exe -newtab -s size:[getsize:"C:\Windows\Explorer.exe"] [getproperty:"C:\Windows\Explorer.exe",extension]

get:
"C:\Program Files\Everything 1.5a\exe ...
by bit
Mon Dec 02, 2024 10:42 am
Forum: Everything 1.5 Alpha
Topic: 1.5.0.1384a introduced a backward-incompatible change on command line option processing
Replies: 7
Views: 1759

Re: 1.5.0.1384a introduced a backward-incompatible change on command line option processing

I found it too,
#define xxx
(passed to the command line) are not worked on 1385a
by bit
Sat Nov 09, 2024 7:05 pm
Forum: Everything 1.5 Alpha
Topic: how to restore filelist when restore a session?
Replies: 1
Views: 513

how to restore filelist when restore a session?

Code: Select all

filelist0:
Such search will be meaningless when restored from session. :shock:
by bit
Mon Mar 11, 2024 9:25 am
Forum: Everything 1.5 Alpha
Topic: dupe_lines show wrong line if multiple properties specified
Replies: 5
Views: 2082

Re: dupe_lines show wrong line if multiple properties specified


Everything 1.5.0.1368a

This secondary sort is no longer consider when showing dupe lines.


Found a bug in 1370a about dupe_lines when using a "!" before the 2nd sort:

If I want to find all files with same size but different directories:
z:\ dupe:size;!path
result showing addtionanl lines ...
by bit
Mon Feb 26, 2024 9:49 am
Forum: Everything 1.5 Alpha
Topic: 1367: Size & Date Missing (Part II)
Replies: 17
Views: 8346

Re: 1367: Size & Date Missing (Part II)



You will need to force a rebuild to pickup the correct size and dates.
You can force a rebuild from Tools -> Options -> Indexes -> Force Rebuild, or Tools -> Options -> NTFS -> volume -> Right click -> Reindex


This sometimes happens when I download files to my external disks (USB cable ...
by bit
Mon Feb 26, 2024 9:39 am
Forum: Everything 1.5 Alpha
Topic: dupe_lines show wrong line if multiple properties specified
Replies: 5
Views: 2082

Re: dupe_lines show wrong line if multiple properties specified


I'll look into using the dupe properties instead of the current sort for the dupe lines.


"dupe_lines" should be added only to differentiate each dupe group.

My use case:
- find files dupes on size
- for each dupe group (same size file), sort them by ext or path, so I can easily tell which one ...
by bit
Sun Feb 25, 2024 12:48 pm
Forum: Everything 1.5 Alpha
Topic: dupe_lines show wrong line if multiple properties specified
Replies: 5
Views: 2082

dupe_lines show wrong line if multiple properties specified

I want to find files of dupe ext and then sort by path in each dupe group.

Code: Select all

file: z: dupe:ext   sort:ext;path
However the addtional sort will break dupe_lines. It now adds lines on all rows.

Looks like a bug introduced in recent versions.
wrong dupe_lines.png
wrong dupe_lines.png (26.11 KiB) Viewed 2081 times
by bit
Wed Jan 10, 2024 12:03 pm
Forum: Everything 1.5 Alpha
Topic: Formulas
Replies: 41
Views: 87070

Re: Formulas


Now show empty col1 and col2 for dirs;

This is a bug.
The values should be shown for folders.
I am working on a fix.


Good to know it's not intented for dirs.

And about the conditions for calculation of cols:
only assign custom columns when they are visible, you perform a search on a custom ...
by bit
Wed Jan 10, 2024 11:22 am
Forum: Everything 1.5 Alpha
Topic: Formulas
Replies: 41
Views: 87070

Re: Formulas


Everything 1.5.0.1366a will now only assign custom columns when they are visible, you perform a search on a custom column or sort by a custom column.

Previously, Everything would assign custom column values on search.


This change invalids many of my old bookmarks, such as
regex:"(item|id)(\d ...
by bit
Thu Jul 13, 2023 2:50 pm
Forum: Everything 1.5 Alpha
Topic: Formulas
Replies: 41
Views: 87070

Re: Column Formulas


foo bar column1:=regexmatch($fullpath:,"^C:\\Users\\My User Name\\")?1:0 sort:column1-descending;dm


There is only "REGEX_MATCH" listed as functions.
Is this a special case, or, all other column functions can be used without underscore in their names?

ANd the "?" operator are not listed ...
by bit
Thu Jul 13, 2023 6:40 am
Forum: Everything 1.5 Alpha
Topic: Is there a limit for max nested functions in column formula?
Replies: 1
Views: 720

Re: Is there a limit for max nested functions in column formula?

Just found an workaround using multiple vars:

regex:"C:\\windows\\([^\\]+)$" addcolumns:col1
cola:=REGEX_REPLACE(...(LOWER(regmatch1:),"^\x21","0X21"),"...)
colb:=REGEX_REPLACE(...$cola:,"^\x3F","0X3F"),...)
....
col1:=$colf:

It's harder to view and edit, also there is a limit of max 16 ...
by bit
Thu Jul 13, 2023 4:43 am
Forum: Everything 1.5 Alpha
Topic: Is there a limit for max nested functions in column formula?
Replies: 1
Views: 720

Is there a limit for max nested functions in column formula?

As title says.

31 functions works:


regex:"C:\\windows\\([^\\]+)$" addcolumns:col1 col1:=REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX ...
by bit
Tue Jul 11, 2023 2:47 pm
Forum: Everything 1.5 Alpha
Topic: How to avoid empty column value when export to txt?
Replies: 3
Views: 1064

Re: How to avoid empty column value when export to txt?

void wrote: Tue Jul 11, 2023 12:21 pm Read extended information
This command are not so clear to me. I guess it only gather info for shown columns which not indexed.
"Gather needed column data for selected rows" might be more clear.
by bit
Tue Jul 11, 2023 9:29 am
Forum: Everything 1.5 Alpha
Topic: How to avoid empty column value when export to txt?
Replies: 3
Views: 1064

How to avoid empty column value when export to txt?

When export to tab-seperated txt, if any column is a property not indexed, it's not garanteed to be exported with the right value, but empty instead.
Like "Aspect Ratio" for video. Looks like it need time to show this property and everything only show it when the row is not hidden to user.
This can ...
by bit
Tue Jul 04, 2023 7:51 am
Forum: Everything 1.5 Alpha
Topic: Suggest: Add xxHash support for faster content dedupe
Replies: 3
Views: 1347

Suggest: Add xxHash support for faster content dedupe

when finding dupes a faster hash algorithm is preferred.
we have dupe:size;sha256 , but it's a bit slow. (also sha1/md5/sha512)
I found a better hash algorithm there for non-cryptographic use, which fit the need for fastly dedupe files.
xxHash, especially XXH3, which is fastest in my knowledge ...
by bit
Mon Jun 05, 2023 10:17 am
Forum: Everything 1.5 Alpha
Topic: Request descendant-occurrence-count:
Replies: 4
Views: 1807

Re: Request descendant-occurrence-count:


child-occurrence-count updates in real-time.


Does child-file-count: / child-folder-count: / child-count: also updates in real-time ?
What about sibling-*-count: ?
It feels like that the descendant-*-count: not update that quickly. Is it already used some cache? If so, occurrence-count for it is ...
by bit
Sun Jun 04, 2023 12:45 am
Forum: Everything 1.5 Alpha
Topic: es: URL Protocol in new window
Replies: 4
Views: 1425

Re: es: URL Protocol in new window

Nice! Don't want to touch the registry :( , which will always revert my changes to default per new version of everything installed...
by bit
Sun Jun 04, 2023 12:36 am
Forum: Everything 1.5 Alpha
Topic: Request descendant-occurrence-count:
Replies: 4
Views: 1807

Request descendant-occurrence-count:

As we have child-occurrence-count:, child:, descendant:,
why no descendant-occurrence-count: ? :lol:
by bit
Wed May 31, 2023 3:36 am
Forum: Everything 1.5 Alpha
Topic: es: URL Protocol in new window
Replies: 4
Views: 1425

Re: es: URL Protocol in new window

Good workaround, though imo it's Better to be able to set it by query str. "?newwindow=1".
by bit
Wed May 31, 2023 3:24 am
Forum: Everything 1.5 Alpha
Topic: es: URL Protocol in new window
Replies: 4
Views: 1425

es: URL Protocol in new window

How to make the search appears in an new window, instead of the existing one?
by bit
Mon May 29, 2023 12:07 pm
Forum: Everything 1.5 Alpha
Topic: Multiple Regex override capture groups inconsistently
Replies: 9
Views: 3863

Re: Multiple Regex override capture groups inconsistently



nofastregex:path:regex:"dl\\"

works now. :D

search 'nofastregex:path:regex:"dl\\"' filter '' sort 1 ascending 1
parse flags 00020002 type 20c00100
TERM dl\\
FOLDER TERM START 000000004a3d7638 M 000000000078e4d0 N 000000000078e5f0
000000004a3d7638 80e00904 M 000000000078e4d0 N ...
by bit
Mon May 29, 2023 10:55 am
Forum: Everything 1.5 Alpha
Topic: Multiple Regex override capture groups inconsistently
Replies: 9
Views: 3863

Re: Multiple Regex override capture groups inconsistently


nofastregex:regex:"dl\\"

Still fails...

search 'nofastregex:regex:"dl\\"' filter '' sort 1 ascending 1
parse flags 00020002 type 20c00100
TERM dl\\
FOLDER TERM START 000000004dbc5538 M 0000000000afe8e0 N 0000000000afea00
000000004dbc5538 80e00900 M 0000000000afe8e0 N 0000000000afea00 OP 275 ...
by bit
Mon May 29, 2023 10:16 am
Forum: Everything 1.5 Alpha
Topic: Multiple Regex override capture groups inconsistently
Replies: 9
Views: 3863

Re: Multiple Regex override capture groups inconsistently



Check the performance between:
regex:"dl\\"
no-fast-regex:regex:"dl\\"


why no result for no-fast-regex:regex:"dl\\" ?

search 'regex:"dl\\"' filter '' sort 1 ascending 1
parse flags 00020002 type 20c00100
TERM dl\\
FOLDER TERM START 00000000062981a8 M 0000000000afe8e0 N 0000000000afea00 ...
by bit
Mon May 29, 2023 8:49 am
Forum: Everything 1.5 Alpha
Topic: Multiple Regex override capture groups inconsistently
Replies: 9
Views: 3863

Re: Multiple Regex override capture groups inconsistently


regex:"dl\\" is optimized to a subpath ending with dl search.

1) Can you give a list of conditions and methods on when and how the regex optimization applies?
eg: regex:"a\\|b\\", will it be optimized to <a\|b\>?
2) How much imporved performance will be achieved by such an optimization?

Regex ...
by bit
Mon May 29, 2023 1:43 am
Forum: Everything 1.5 Alpha
Topic: Multiple Regex override capture groups inconsistently
Replies: 9
Views: 3863

Multiple Regex override capture groups inconsistently

This happens when I want to use fileexists to filter uncompleted aria2-downloading files.

file-exists:
folder-exists:

Search for files or folders where the specified filename exists in the index based on a previous regex search .


Use Match Path, path: or a path separator in the regular ...
by bit
Fri May 12, 2023 8:30 am
Forum: Everything 1.5 Alpha
Topic: Can I place sort: before dupe: ?
Replies: 3
Views: 1994

Re: Can I place sort: before dupe: ?

void wrote: Fri May 12, 2023 8:11 am Yes, the sort: overrides how Everything finds duplicates. (if specified before dupe:)
ok good to know this.
I guess sort: after dupe: should have no side-effects on dupe: behavior, but only change the order of result items?
by bit
Fri May 12, 2023 8:04 am
Forum: Everything 1.5 Alpha
Topic: Can I place sort: before dupe: ?
Replies: 3
Views: 1994

Can I place sort: before dupe: ?

I know dupe:p1;p2;p3 will auto set sort to p1-p2-p3, and then I can change that by adding sort:p2;p3;p1 so new sort is p2-p3-p1
dupe:col1;col2 sort:col2;col3;width;path
But if I place the sort before dupe:, the result list changes.
sort:col2;col3;width;path dupe:col1;col2
seems "sort:" can ...
by bit
Sun Apr 09, 2023 8:33 am
Forum: Everything 1.5 Alpha
Topic: Duplicate items in result when adding dir and its subdir both into indexed folders
Replies: 4
Views: 1779

Re: Duplicate items in result when adding dir and its subdir both into indexed folders

Thank you for the alternate methods. Good to know /rescan and -rescan work on subdirs :D
by bit
Sun Apr 09, 2023 7:02 am
Forum: Everything 1.5 Alpha
Topic: Duplicate items in result when adding dir and its subdir both into indexed folders
Replies: 4
Views: 1779

Re: Duplicate items in result when adding dir and its subdir both into indexed folders

void wrote: Sun Apr 09, 2023 5:34 am Please consider only indexing D:\ to avoid duplicated results.
Yes this is the only way to exclude dupes for now.
Suggestion: add an option to let user customize which part under this folder should have a separate rescan policy.
by bit
Sun Apr 09, 2023 2:09 am
Forum: Everything 1.5 Alpha
Topic: Duplicate items in result when adding dir and its subdir both into indexed folders
Replies: 4
Views: 1779

Duplicate items in result when adding dir and its subdir both into indexed folders

D: is mounted network drive,
D:\dls\a is my download location so it changes often,
when adding both D: and D:\dls\a to Indexes->Folders, I set two different rescan time to reduce unnecessary IO as D: not change that fast.
This cause same item under subdir repeatly showing itself in the list ...
by bit
Sun Apr 02, 2023 1:53 pm
Forum: Everything 1.5 Alpha
Topic: Suggestion: Add a selection checkbox before name column in result list
Replies: 3
Views: 1086

Suggestion: Add a selection checkbox before name column in result list

Give us an option to toggle it, so no need to hold ctrl+mouse to select multiple nonconsecutive items.
Like windows explorer:
selectioncheckbox.png
selectioncheckbox.png (7.13 KiB) Viewed 1086 times
by bit
Wed Mar 15, 2023 2:07 am
Forum: Everything 1.5 Alpha
Topic: Size not updating after download or unzip
Replies: 6
Views: 2002

Re: Size not updating after download or unzip


Sounds like Everything is having trouble reading the size for this file.
Are you able to reproduce the issue?

Everything will not update the size until all handles to the file are closed.

Does Everything update the size after you restart Windows?

Consider using Process Explorer to close handles ...
by bit
Sat Mar 11, 2023 12:34 am
Forum: Everything 1.5 Alpha
Topic: Size not updating after download or unzip
Replies: 6
Views: 2002

Re: Size not updating after download or unzip

Those "empty size" file can be found using

Code: Select all

file: !~  !size: !size:0 
which all reside under my download folder.
by bit
Sat Mar 11, 2023 12:32 am
Forum: Everything 1.5 Alpha
Topic: Size not updating after download or unzip
Replies: 6
Views: 2002

Size not updating after download or unzip

I found many times that after unzip or download, some files still missing file size property.
However, the "Total size" property shows right value.

sizediff.png

I guess it could be a index updating issue so not easy to fix.
Can I update dirs/files properties manually from everything?

I am using ...
by bit
Wed Mar 08, 2023 9:49 am
Forum: Everything 1.5 Alpha
Topic: Wrap long text in search edit
Replies: 3
Views: 1202

Wrap long text in search edit

currently the search bar only dispaly one line, makes it hard to edit a long search content.
sometimes the search can be tens of sentences long.
Instead of copy-paste from notepad, a config option to make the search edit textfield wrap lines is more convenient.
by bit
Wed Mar 08, 2023 8:04 am
Forum: Everything 1.5 Alpha
Topic: limit dupe: result by dupecount
Replies: 2
Views: 1143

limit dupe: result by dupecount

Now the dupe: will display group of dupes which count >=2

Code: Select all

.doc dupe:name dupecount:>1
How to only show groups of 3 dupe items inside?
Maybe a dupecount: search can help.

Code: Select all

.doc dupe:name dupecount:3

Code: Select all

.doc dupe:name dupecount:>3
by bit
Tue Mar 07, 2023 4:59 am
Forum: Everything 1.5 Alpha
Topic: Can we adjust the colors for each group when finding dupes?
Replies: 2
Views: 993

Re: Can we adjust the colors for each group when finding dupes?

Using dividing lines
This might be the best approach. A border line like Excel's cell border is enough.
by bit
Tue Mar 07, 2023 2:26 am
Forum: Everything 1.5 Alpha
Topic: Can we adjust the colors for each group when finding dupes?
Replies: 2
Views: 993

Can we adjust the colors for each group when finding dupes?

Some gorups are show in colors which are visually hard to distinguish
dupecolors.png
dupecolors.png (7.93 KiB) Viewed 993 times
Can we have the ablity to customize those colors used on groups?
by bit
Mon Mar 06, 2023 1:14 am
Forum: Everything 1.5 Alpha
Topic: How to do exponential calculation in eval()?
Replies: 2
Views: 898

How to do exponential calculation in eval()?

e.g.: calc 10^6 (1000000) in eval()
tried [eval:10**7]
pow() exp() not work.
by bit
Sun Feb 19, 2023 5:30 am
Forum: Everything 1.5 Alpha
Topic: Does the order of search term matter?
Replies: 1
Views: 1482

Does the order of search term matter?

video: regex:"xxx.\d+"
regex:"xxx.\d+" video:

Any difference on performance? Will Everything sort those terms internally before search?