Leser: 3
3 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
my $file = 'c:/test.txt';
my $trashDir = 'd:/anotherdir';
my $dest = $trashDir . '/' . basename("$file",".igs") . '.igs';
my $cnt = 2;
while( -e $dest || $cnt != MAXTRASHCOPYS ){
$dest = basename("$dest",".igs") . $cnt . '.igs';
$cnt++;
}
unless( copy("$file","$dest") ){ die "Konnte keine Sicherheitskopie erstellen!"; }
while( -e $dest || $cnt != MAXTRASHCOPYS ){
3 Einträge, 1 Seite |