I just installed Everything, and I am trying to find all Folders (no files) at a certain level, but not deeper
I tried this:
E:\MainFolder\*\*.
and it shows the folders at the 4th level, but also deeper levels.
How would I only show the folders at the 4th level?
Searching for Folders?
Re: Searching for Folders?
Code: Select all
E:\MainFolder\*\* !E:\MainFolder\*\*\*
Re: Searching for Folders?
Great!
Two questions:
1. What is the purpose of the * before E:\ ?
2. Why doesn't the search string also show all the files (at the directory level)?
Two questions:
1. What is the purpose of the * before E:\ ?
2. Why doesn't the search string also show all the files (at the directory level)?
Re: Searching for Folders?
When dealing with full path wildcard searches it is best to use a * prefix.1. What is the purpose of the * before E:\ ?
The * prefix can be omitted if you specify the full path.
If you want only folders, try including *. in your search.2. Why doesn't the search string also show all the files (at the directory level)?
Code: Select all
E:\MainFolder\*\* !E:\MainFolder\*\*\* *.