1
2
3
4
5
6
7
8
9
10
11
12
sub GetAllSummaries
{
my $FilePath = $File::Find::name;
$FilePath =~ tr/a-z/A-Z/; # transform complete path to uppercase
$FilePath =~ tr/\//\\/;
my $FileName = basename $FilePath;
if (($FileName =~ /SUMMARYALLCOMPACT.TXT/))
{
print $Filepath;
#Springe zum übergeordneten Ordner und suche weiter
}
}
Guest FlorianCode: (dl )$FilePath =~ tr/\//\\/;