I'm trying to find out the command line parameter to find files in the root of a specific folder, but excluding the files in the subfolders of this folder.
Can anyone please help me?
How to search only files in a specific folder
Re: How to search only files in a specific folder
To search for files and folders in C:\windows, but exclude all subfolders, search for:
c:\windows !c:\windows\*\*
As a command line option:
Everything.exe -search "c:\windows !c:\windows\*\*"
c:\windows !c:\windows\*\*
As a command line option:
Everything.exe -search "c:\windows !c:\windows\*\*"
Re: How to search only files in a specific folder
I use this command line in TC:
-search "%P !%P\*\*"
When I click on the "D:\" directory in TC
this is what opens in Everything:
D:\ !D:\\*\*
However the search is within the subfolders (and subfolder names as well).
ah..... found it
I have to cancel the "\" after the second %P.
Now it works
-search "%P !%P\*\*"
When I click on the "D:\" directory in TC
this is what opens in Everything:
D:\ !D:\\*\*
However the search is within the subfolders (and subfolder names as well).
ah..... found it
I have to cancel the "\" after the second %P.
Now it works