Page 1 of 1

Utlity to Find and Copy Files?

Posted: Wed Aug 18, 2010 8:05 am
by jcsnyc
Wondering if any of your products can find files across sub-directories based a string and copy them to a specified directory?

So for example:
I store a list of strings to find in Find.txt
AAA-12345
AAA-23556
AAA-11235

Run program that finds files that contain AAA-12345, AAA-23556, AAA-11235 anywhere in the FILE NAME and moves to a specified directory.

Re: Utlity to Find and Copy Files?

Posted: Wed Aug 18, 2010 11:54 am
by DataMystic Support
No - but you could use
dir /s *AAA-12345*
to find such files.

Re: Utlity to Find and Copy Files?

Posted: Sat Oct 15, 2016 5:33 pm
by Riley
DataMystic Support wrote:No - but you could use
dir /s *AAA-12345*
to find such files.
Yes, this works i was looking everywhere for this. Thanks