I think I found a bug with the search when we want to include certain directories only, both 1) relative to the search start directory, and 2) any subdirectory.
Example (search in C:\Windows\INF):
Search for:
Code: Select all
*.ini \usbhub\04*\
To make it returning the 2 files, I must add spaces (one or more) between the two subdirs, like the following. Sounds strange to me.
Search for:
Code: Select all
*.ini \usbhub\ 04*\
Search for:
Code: Select all
*.ini|\usbhub\04*\
To include/exclude certain directories in the search, wildcards can be used in include/exclude directory names, and the names must have a trailing backslash \ . Directories can be found anywhere, or relative to the search start directory:
1. Relative to the search start directory: \subdir1\ or \subdir1\subdir2\ or \
2. Relative to any subdirectory: subdir1\ or subdir1\subdir2\ (no backslash at the start)
If you exclude a directory, all its subdirectories will be excluded too.