Isolate file and directory
-
tcebob
- Posts: 10
- Joined: Sun Jan 17, 2016 3:10 am
Isolate file and directory
I have backups on an external drive. Each backup is in a separate directory. How can I search for a specific file type in one of the directories? For example, I want to find all abc$.exe in X\Dir4, where $ is a wild card
-
NotNull
- Posts: 5961
- Joined: Wed May 24, 2017 9:22 pm
Re: Isolate file and directory
Code: Select all
X\Dir4 wfn:abc?.exe
You can find what this all means - and a lot more - on the Searching help page
Good luck!
-
tcebob
- Posts: 10
- Joined: Sun Jan 17, 2016 3:10 am
Re: Isolate file and directory
Thanks, NotNull. I will follow your suggestion.