If you are experiencing problems with "Everything", post here for assistance.
Phate01
Posts: 2 Joined: Tue Mar 16, 2021 11:48 am
Post
by Phate01 » Tue Mar 16, 2021 11:52 am
I'm using Everything 1.4.1.1005.
Given the folder structure:
Code: Select all
C:\MyFolder\
C:\MyFolder\Sub1\
C:\MyFolder\Sub2\
C:\MyFolder\Sub3\
I'd like to exclude the folder MyFolder, but include only some of its subfolders, e.g. Sub1 and Sub3, so I can search only from these 2 and not from the whole MyFolder.
How can I do this?
void
Developer
Posts: 16678 Joined: Fri Oct 16, 2009 11:31 pm
Post
by void » Tue Mar 16, 2021 12:35 pm
To set which folders are indexed:
In Everything , from the Tools menu, click Options .
Click the NTFS tab on the left.
Select your C: drive.
Change Include only to a semicolon delimited (;) list of folders.
For example:
C:\MyFolder\Sub1;C:\MyFolder\Sub3
Click OK .
Phate01
Posts: 2 Joined: Tue Mar 16, 2021 11:48 am
Post
by Phate01 » Wed Mar 17, 2021 9:13 am
Yes but this will index only those subfolders and not the entire C: drive.
My example was not correct, the actual folder structure is like
Code: Select all
C:\Path\To\MyFolder\
C:\Path\To\MyFolder\Sub1\
C:\Path\To\MyFolder\Sub2\
C:\Path\To\MyFolder\Sub3\
I'd like to index everything, and for a specific folder (MyFolder) only some of its subfolders.
void
Developer
Posts: 16678 Joined: Fri Oct 16, 2009 11:31 pm
Post
by void » Wed Mar 17, 2021 9:28 am
You can do this with regex negative look ahead:
Please try the following exclude filter:
In Everything , from the Tools menu, click Options .
Click the NTFS tab on the left.
Select your C: drive.
Clear Include only .
Click the Exclude tab on the left.
Click Add filter....
Set the filter to the following and click OK :
regex:^C:\\Path\\To\\MyFolder\\(?!(Sub1|Sub3)$)
Click OK .
This will still find the C:\Path\To\MyFolder folder and files in this folder.
However it will exclude ALL subfolders except Sub1 and Sub3.
NotNull
Posts: 5458 Joined: Wed May 24, 2017 9:22 pm
Post
by NotNull » Wed Mar 17, 2021 9:34 am
When indexing, Everything needs the (grand)parent folder structure in it's database.
You basically want to saw a branch of a tree and at the same time a leaf on that branch to be still attached to to tree itself.
Another approach is to create a
Filter where the
Search: field is defined as follows:
Code: Select all
< !C:\Path\To\MyFolder\ | C:\Path\To\MyFolder\Sub1 | C:\Path\To\MyFolder\Sub2 | C:\Path\To\MyFolder\Sub3 >
Use "" if your foldernames contain spaces.