Is there anyway I can exclude symlinked files from my everything results?
For symlinks, the actual file extension is a normal extension, ie. test.mp4, so I can't use "*.symlink" in the exclude files section.
Is there any other way I could achieve excluding symlinks? Thanks.
Exclude symlinks from everything
Re: Exclude symlinks from everything
Yes, there is.
Symlinks are one of the Reparse point type of files Windows can handle (the most common, in fact)
You can find all these reparse point files with his query:
Before you execute this, I would advice you to index the file attributes too (default: not indexed):
Menu > Tools > Options > Indexes : enable Index attributes and enable Fast attributes sort
If these are the files/folders you want to exclude, you can add this exclusion to one or more filters with:
Filters can be managed through Menu: Search > Organize Filters ...
Symlinks are one of the Reparse point type of files Windows can handle (the most common, in fact)
You can find all these reparse point files with his query:
Code: Select all
attrib:L
Menu > Tools > Options > Indexes : enable Index attributes and enable Fast attributes sort
If these are the files/folders you want to exclude, you can add this exclusion to one or more filters with:
Code: Select all
!attrib:L
Re: Exclude symlinks from everything
Is there currently a way to demark symlinks?
Such as give them a different background or text color?
Had to use bold for background, but I think I am understood.
Here's to hoping.
Janus.
Such as give them a different background or text color?
Had to use bold for background, but I think I am understood.
Here's to hoping.
Janus.
-
- Posts: 192
- Joined: Fri Nov 28, 2014 3:58 pm
Re: Exclude symlinks from everything
Thank you! This worked perfectly.NotNull wrote:Yes, there is.
Symlinks are one of the Reparse point type of files Windows can handle (the most common, in fact)
You can find all these reparse point files with his query:Before you execute this, I would advice you to index the file attributes too (default: not indexed):Code: Select all
attrib:L
Menu > Tools > Options > Indexes : enable Index attributes and enable Fast attributes sort
If these are the files/folders you want to exclude, you can add this exclusion to one or more filters with:Filters can be managed through Menu: Search > Organize Filters ...Code: Select all
!attrib:L
Re: Exclude symlinks from everything
You're welcome! (and thanks for the feedback)