I want to search for folders AND shortcuts to folders.
How can I achieve this?
If I enable just folders then shortcuts to them are excluded.
How to enable Folder search AND shortcuts to folders?
Re: How to enable Folder search AND shortcuts to folders?
Not possible in Everything 1.4.
In Everything 1.5:
Optionally add a column for the folder/ target:
In Everything 1.5:
Code: Select all
folder: | <ext:lnk FOLDER_EXISTS($shortcut-target:)>Code: Select all
add-column:A < folder: A:=$full-path:> | <ext:lnk FOLDER_EXISTS($shortcut-target:) A:=$shortcut-target:> Re: How to enable Folder search AND shortcuts to folders?
Thank you for answer.
However your solution in v1.5 is user-unfriendly.
Having to remember and enter manually
folder: | <ext:lnk FOLDER_EXISTS($shortcut-target:)>
is by far too cumbersome.
Why not add a new submenu entry in menu "Search"
- Shortcuts & symlinks
This visually intuitive solution would be the best
However your solution in v1.5 is user-unfriendly.
Having to remember and enter manually
folder: | <ext:lnk FOLDER_EXISTS($shortcut-target:)>
is by far too cumbersome.
Why not add a new submenu entry in menu "Search"
- Shortcuts & symlinks
This visually intuitive solution would be the best
Re: How to enable Folder search AND shortcuts to folders?
No one forces you to enter this more than once.pstein wrote: Wed Apr 22, 2026 6:05 am Thank you for answer.
However your solution in v1.5 is user-unfriendly.
Having to remember and enter manually
folder: | <ext:lnk FOLDER_EXISTS($shortcut-target:)>
is by far too cumbersome.
Why not add a new submenu entry in menu "Search"
- Shortcuts & symlinks
This visually intuitive solution would be the best
Just make a bookmark for it.
Re: How to enable Folder search AND shortcuts to folders?
To create a filter to search Folders and Shortcuts to Folders:
Filters can be organized from Search menu -> Organize filters.
To find symlinks, include the following in your search:
I recommend indexing file attributes under Tools -> Options -> Indexes for instant searching.
To find shortcuts and symlinks:
I would like to keep the Search menu minimal, you can add your own filters.
Thank you for the feedback.
- In Everything, from the Search menu, click Add to filters....
- Change the Name to:
Folders and Shortcuts to Folders - Change the Search to:
folder: | <ext:lnk FOLDER_EXISTS($shortcut-target:)> - Click OK.
Filters can be organized from Search menu -> Organize filters.
To find symlinks, include the following in your search:
attrib:lI recommend indexing file attributes under Tools -> Options -> Indexes for instant searching.
To find shortcuts and symlinks:
*.lnk | attrib:lI would like to keep the Search menu minimal, you can add your own filters.
Thank you for the feedback.
Re: How to enable Folder search AND shortcuts to folders?
@void:
Thank you for your instructions. Some questions:
1.)
<ext:lnk FOLDER_EXISTS($shortcut-target:)>
means, that shortcuts are only listed if the target folder exists.
How do I list ALL Shortcuts (even if the target folders does not exist any more (=is moved))?
2.) How to I list symlinks only if they point to folders (not to files)?
Thank you for your instructions. Some questions:
1.)
<ext:lnk FOLDER_EXISTS($shortcut-target:)>
means, that shortcuts are only listed if the target folder exists.
How do I list ALL Shortcuts (even if the target folders does not exist any more (=is moved))?
2.) How to I list symlinks only if they point to folders (not to files)?
Re: How to enable Folder search AND shortcuts to folders?
Currently, not possible with Everything.means, that shortcuts are only listed if the target folder exists.
How do I list ALL Shortcuts (even if the target folders does not exist any more (=is moved))?
*.lnk will give you all shortcuts, but there's currently no function to determine if the target is a folder if the target doesn't exist.
2.) How to I list symlinks only if they point to folders (not to files)?
attrib:l FOLDEREXISTS($reparse-target:)The reparse target will need to exist for this to work.
Re: How to enable Folder search AND shortcuts to folders?
I will consider a shortcut-target-is-folder property.
After looking at this a little more, you can find .lnk files that target a folder with the following search:
After looking at this a little more, you can find .lnk files that target a folder with the following search:
*.lnk READUINT32($filename:,0x18)&0x10Re: How to enable Folder search AND shortcuts to folders?
Someone dug up the shortcut binary file format ... Respect!