How to perform a 'Multiple file search' ?

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
totalcom45
Junior Member
Junior Member
Posts: 2
Joined: 2018-07-19, 20:58 UTC

How to perform a 'Multiple file search' ?

Post by *totalcom45 »

Hello. I know this question must have been asked multiple times. I did look up. But I still can't get results.

I've files (About 10,000) named like this:

Example:

TFHT-WEJ-A-29083-IFDFH
DFDJ-ERE-H-34985-DFLNK
FGJI-ESH-K-64534-DFWEF
.
.
.


These files are located in different multiple folders/sub-folders (about 50,000).

I need to search using these strings only A-29083 H-34985 K-64534

How can I do that?

Please advise.

Thanks
User avatar
nsp
Power Member
Power Member
Posts: 1805
Joined: 2005-12-04, 08:39 UTC
Location: Lyon (FRANCE)
Contact:

Re: Multiple file search

Post by *nsp »

totalcom45 wrote:Hello. I know this question must have been asked multiple times. I did look up. But I still can't get results.

I've files (About 10,000) named like this:

Example:

TFHT-WEJ-A-29083-IFDFH
DFDJ-ERE-H-34985-DFLNK
FGJI-ESH-K-64534-DFWEF
.
.
.


These files are located in different multiple folders/sub-folders (about 50,000).

I need to search using these strings only A-29083 H-34985 K-64534

How can I do that?

Please advise.

Thanks
Did you simply test entering the expression.

Code: Select all

 A-29083 H-34985 K-64534
searching in all subdirectories and ticking everithyng if you intalled it already.
Reading the help gives you:
In this field, you can enter the search mask for the files you want to find. A question mark ? stands for exacly one character, and an asterisk * stands for any number of characters. Multiple search masks can be entered, separated by spaces (see examples below......

if you want full name match you can use regex like ^.{4}-.{3}-((A-29083)|(H-34985)|(K-64534))-.{5}$

everything search is sometimes not handling correctly this expression...
totalcom45
Junior Member
Junior Member
Posts: 2
Joined: 2018-07-19, 20:58 UTC

Post by *totalcom45 »

Yes. Tried that.

It says

[No files found]

pasteboard.co/HvleMtp.jpg

Thank you
damjang
Senior Member
Senior Member
Posts: 215
Joined: 2003-10-09, 15:58 UTC
Contact:

Post by *damjang »

I tried and find that you have to use wildcards, so this should work:

Code: Select all

*A-29083* *H-34985* *K-64534* 
User avatar
Stefan2
Power Member
Power Member
Posts: 4157
Joined: 2007-09-13, 22:20 UTC
Location: Europa

How to find multiple pattern at one search?

Post by *Stefan2 »

damjang wrote:I tried and find that you have to use wildcards, so this should work:

Code: Select all

*A-29083* *H-34985* *K-64534* 

Well done.


That's what nsp have posted too:
nsp wrote:
Reading the help gives you:
In this field, you can enter the search mask for the files you want to find.
A question mark ? stands for exacly one character,
and an asterisk * stands for any number of characters.
Multiple search masks can be entered, separated by spaces (see examples below......
..


Try it in TCs Folder:

Search for: *16* *32*






 
Post Reply