How could search the folder but not search its subfolder?
How could search the folder but not search its subfolder?
How could I just search the specified folder but not search its subfolder?
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\*\*
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?
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.
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\*\*