- If I put "C:\A\B", only "B" is in the result.
Console output:Code: Select all
search '"C:\A\B"' filter '' sort 1 ascending 1 parse flags 00000000 type 00c01100 TERM C:\A\B FOLDER TERM START 0000000009e61cb8 M 000000000014e8e0 N 000000000014ea00 0000000009e61cb8 e01104 M 000000000014e8e0 N 000000000014ea00 OP 163 C:\A\B FILE TERM START 0000000009e61cb8 M 000000000014e8e0 N 000000000014ea00 0000000009e61cb8 e01104 M 000000000014e8e0 N 000000000014ea00 OP 163 C:\A\B same results set high UI thread priority restore UI thread priority new results 1
- If I put "C:\A\B\", 0 objects.
Console output:Code: Select all
search '"C:\A\B\"' filter '' sort 1 ascending 1 parse flags 00000000 type 00c01100 TERM C:\A\B\ FOLDER TERM START 0000000009e60a58 M 000000000014e8e0 N 000000000014ea00 0000000009e60a58 e01104 M 000000000014e8e0 N 000000000014ea00 OP 163 C:\A\B\ FILE TERM START 0000000009e60a58 M 000000000014e8e0 N 000000000014ea00 0000000009e60a58 e01104 M 000000000014e8e0 N 000000000014ea00 OP 163 C:\A\B\ use old result arrays
- If I put "C:\A\B\c", 0 objects.
Console output:Code: Select all
search '"C:\A\B\c"' filter '' sort 1 ascending 1 parse flags 00000000 type 00c01100 TERM C:\A\B\c FOLDER TERM START 0000000009e61e08 M 000000000014e8e0 N 000000000014ea00 0000000009e61e08 e01104 M 000000000014e8e0 N 000000000014ea00 OP 163 C:\A\B\c FILE TERM START 0000000009e61e08 M 000000000014e8e0 N 000000000014ea00 0000000009e61e08 e01104 M 000000000014e8e0 N 000000000014ea00 OP 163 C:\A\B\c use old result arrays found 0 folders with 0 threads in 0.000002 seconds set high UI thread priority found 0 files with 0 threads in 0.000002 seconds SET SORT 1 set sort 1 ascending 1 is valid 1 already sorted finished sort, time taken 0.000983 seconds update selection 0.000000 seconds ready DB_WAIT: _db_ready_proc waiting for _db_search_thread_proc... DB_WAIT: _db_ready_proc waited 0.000356 seconds new results 0
Now if I add C:\A\B to folder index, suddenly it works as expected.