@@ -, +, @@ has distinct hash --- tools/access_files.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/access_files.pl +++ a/tools/access_files.pl @@ -53,8 +53,8 @@ else { foreach my $dir(@directories){ opendir(DIR, $dir); foreach my $filename (readdir(DIR)) { - my $id = md5_hex($filename); my $full_path = "$dir/$filename"; + my $id = md5_hex($full_path); next if ($filename =~ /^\./ or -d $full_path); my $st = stat($full_path); --