How could search the folder but not search its subfolder?
-
sirliu
- Posts: 15
- Joined: Wed Jan 30, 2013 11:05 am
How could search the folder but not search its subfolder?
How could I just search the specified folder but not search its subfolder?
-
void
- Developer
- Posts: 19899
- Joined: Fri Oct 16, 2009 11:31 pm
Re: How could search the folder but not search its subfolder
Example, search the folder c:\abc with no subfolders
Code: Select all
c:\abc !c:\abc\*\*-
WanderMax
- Posts: 29
- Joined: Thu Jan 10, 2013 4:31 pm
Re: How could search the folder but not search its subfolder
In the filter,how to add a filter to search file but not folder??void wrote:Example, search the folder c:\abc with no subfoldersCode: Select all
c:\abc !c:\abc\*\*
how to add except item?
-
void
- Developer
- Posts: 19899
- Joined: Fri Oct 16, 2009 11:31 pm
Re: How could search the folder but not search its subfolder
To search only files, use the file: modifier:
To make a filter for files only:
Code: Select all
file:- From the Search menu, from the Filters submenu, click Add to filters.
- Give the filter a name, for example Files only.
- Change the search to:
Code: Select all
file: - Click OK.
-
sirliu
- Posts: 15
- Joined: Wed Jan 30, 2013 11:05 am
Re: How could search the folder but not search its subfolder
Oh,I see,THX!void wrote:Example, search the folder c:\abc with no subfoldersCode: Select all
c:\abc !c:\abc\*\*