Tweaking.com Support Forums
		Main Forum => General Computer Support => Topic started by: Angelika on October 23, 2017, 02:15:52 am
		
			
			- 
				How to Find all duplicate names by pattern:
I have an image file in the folder.
File names precede numbering with "#"(separator).
Example:
12345#65-_87AGYol.jpg
number#filename.jpg
duplicat:
654309#kl_76-KLK7L.jpg
98709#kl_76-KLK7L.jpg
(?-i)^[y|z|w]_[a-z0-9]{8}\.jpg
or
[a-zA-Z0-9_-]{11}\.jpg
			 
			
			- 
				I don't know but I'll ask someone for you.
			
 
			
			- 
				from a command prompt?
You could do something like "dir *kl_76-KLK7L.jpg /s"   if I understand the issue.  The "*" is wildcard so that says, give me a list of all the files that start with anything and end with kl_76-KLK7L.jpg .. The /s searched all the subdirectories from where you are at. 
or if you just wanted files with KL7L in it that ended with anything extensions
dir *KL7L*.* /s 
But I would just use a program.  ;)
http://www.majorgeeks.com/files/details/alldup.html
			 
			
			- 
				
But I would just use a program.  ;)
http://www.majorgeeks.com/files/details/alldup.html
The program fully meets my expectations.
Search method -> Similar Images
Thanks!
			 
			
			- 
				I'll give him a Karma point for you :)