How to exclude subfolders from the result.
How to exclude subfolders from the result.
For example
C:\New Folder\New Folder
How to display the files only from C:\New Folder and not from C:\New Folder\New Folder
C:\New Folder\New Folder
How to display the files only from C:\New Folder and not from C:\New Folder\New Folder
Re: How to exclude subfolders from the result.
Code: Select all
C:\New Folder\ !C:\New Folder\New Folder\
Re: How to exclude subfolders from the result.
That was just example...I mean ALL subfolders,not just one
For example C:\New Folder have 10 subfolders and I want to see what only C:\New Folder have inside(excluding the files\folders of the subfolders)
I'm not requesting such a feature,I just want to know if Everything can do that already
For example C:\New Folder have 10 subfolders and I want to see what only C:\New Folder have inside(excluding the files\folders of the subfolders)
I'm not requesting such a feature,I just want to know if Everything can do that already
Re: How to exclude subfolders from the result.
Code: Select all
C:\New Folder\ !C:\New Folder\*\*
Code: Select all
C:\New Folder\ parents:2
This is much faster than the wildcard version above.
Re: How to exclude subfolders from the result.
Ok and yes,the second method is better.
BTW is there is some command that will sort all items by something
BTW is there is some command that will sort all items by something
Re: How to exclude subfolders from the result.
There are no search commands for sorting.BTW is there is some command that will sort all items by something
You can set a keyboard shortcut to each sort.
Re: How to exclude subfolders from the result.
Hmm,I thought I removed that part from the post after I found about the shortcut.
I wanted to ask something else...can I somehow copy only the file names of the selected items
I wanted to ask something else...can I somehow copy only the file names of the selected items
Re: How to exclude subfolders from the result.
Ctrl + Shift + Ccan I somehow copy only the file names of the selected items
Re: How to exclude subfolders from the result.
I guess I have to take a good look at the hotkeys(maybe I'll find something else)...there is no menu for this so I though there is no such option.
Last edited by vsub on Sun Feb 24, 2013 12:33 am, edited 2 times in total.
Re: How to exclude subfolders from the result.
Copy Full Name to Clipboard currently only shows up in the context menu when you have a single item selected.
I have changed this to always show up for the next release since it does let you copy multiple files.
I have changed this to always show up for the next release since it does let you copy multiple files.
Re: How to exclude subfolders from the result.
This copies the fill path of the item...I meant only the files\folders names without the paths.
Re: How to exclude subfolders from the result.
There is currently no shortcut to copy just the file name parts.
You could export to CSV to get a list of the file name parts, but this will list all the results (not the selection only).
You could export to CSV to get a list of the file name parts, but this will list all the results (not the selection only).
Re: How to exclude subfolders from the result.
Ok,I can just use autohotkey to do the rest of the work.
-
- Posts: 12
- Joined: Mon Mar 16, 2015 2:12 pm
Re: How to exclude subfolders from the result.
!sticky!void wrote:- or -Code: Select all
C:\New Folder\ !C:\New Folder\*\*
This limits the search to files and folders with 2 parents only (C: and New Folder).Code: Select all
C:\New Folder\ parents:2
This is much faster than the wildcard version above.
Re: How to exclude subfolders from the result.
parent:"the folder path" also seems to work...no need to count the \ or duplicate the path string and add things to it
For some unknown reason I always forget how to exclude the sub folders
For some unknown reason I always forget how to exclude the sub folders
Re: How to exclude subfolders from the result.
How to add "exclude subfolders" to Filters?
Re: How to exclude subfolders from the result.
It's currently not possible to exclude subfolders with a filter.
I'll look into a search modifier to only search the root of a folder when specified.
I have been changing the way filters work for a future release, so it might be possible to apply a filter that will effect the current search.
What I have in mind is something like a filter with the search:
nosubfolders:<search:>
When this filter is selected the current search is substituted with the search: term (instead of being ANDed after the filters search).
The nosubfolders: modifier will prevent any subfolders being included in any specified paths.
Also note: parent: only works with Everything 1.4 or later.
I'll look into a search modifier to only search the root of a folder when specified.
I have been changing the way filters work for a future release, so it might be possible to apply a filter that will effect the current search.
What I have in mind is something like a filter with the search:
nosubfolders:<search:>
When this filter is selected the current search is substituted with the search: term (instead of being ANDed after the filters search).
The nosubfolders: modifier will prevent any subfolders being included in any specified paths.
Also note: parent: only works with Everything 1.4 or later.
Re: How to exclude subfolders from the result.
What about a new modifier childs:<count> as similar as parents:<count>.
Re: How to exclude subfolders from the result.
In Everything 1.4, the following functions are available:
childcount:
childfoldercount:
childfilecount:
childcount:10 will find folders containing 10 items (files or folders).
childfoldercount:10 will find folders containing 10 subfolders.
childfilecount:10 will find folders containing 10 files.
Note: these functions are only available in Everything 1.4 or later.
childcount:
childfoldercount:
childfilecount:
childcount:10 will find folders containing 10 items (files or folders).
childfoldercount:10 will find folders containing 10 subfolders.
childfilecount:10 will find folders containing 10 files.
Note: these functions are only available in Everything 1.4 or later.
Re: How to exclude subfolders from the result.
Bit of a stupid question, but how do I enter those code lines? When I type it in the search bar it just shows the rsults that include "parents: 2" which is obviously not what I want.
Re: How to exclude subfolders from the result.
Without knowing what it is that you want exactly:
Code: Select all
!parents:2
(and there should be no space in "parents: 2")
See also the Everything Search Syntax