7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
copy($datei1,$datei2) or ©_failed;
sub copy_failed {
print "Copy failed!\n";
#
# Und noch was anderes...
#
}
1
2
3
4
5
6
7
8
9
my $return = copy($datei1,$datei2);
if (! $return) {
print "Copy failed!\n";
#
# Und noch was anderes...
#
}
7 Einträge, 1 Seite |