1
Support and Feedback / Search duplicates by content
« on: July 07, 2020, 08:53:52 »
Does MC have this feature? Can I find duplicate photos in two folders provided they have different names?
2021-03-01
MultiCommander v11 is released!
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
|а|б|в|г|д|е|ж|з|и|й|к|л|м|н|о|п|р|с|т|у|ф|х|ц|ч|ш|щ|ы|ь|э|ю|я search pattern
_|a|b|v|g|d|e|zh|z|i|y|k|l|m|n|o|p|r|s|t|u|f|h|c|ch|sh|sch|y|j|e|yu|ya replace patternwhich works in TC like a charm without even ticking RegEx option.
@var $file = FindFiles("D:\downloads\Dicts_unpacked\\*");
@var $n;
for( $n = 0; $n < arrayCount($file); $n++)
{
@var $is = IsFolder($file[n]);
if($is == 1)
{
@var $infiles = FindFiles($file[n] ^ "*.lsd");
if(arrayCount($infiles) > 0)
{
@var $num = SetSourceSelected( $file[n] , 1);
}
@var $infiles = FindFiles($file[n] ^ "*.dsl");
if(arrayCount($infiles) > 0)
{
@var $num = SetSourceSelected( $file[n] , 1);
}
}
}