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.
Utlity to Find and Copy Files?
Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators
- DataMystic Support
- Site Admin
- Posts: 2227
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
Re: Utlity to Find and Copy Files?
No - but you could use
dir /s *AAA-12345*
to find such files.
dir /s *AAA-12345*
to find such files.
Re: Utlity to Find and Copy Files?
Yes, this works i was looking everywhere for this. ThanksDataMystic Support wrote:No - but you could use
dir /s *AAA-12345*
to find such files.