Thread Dateioperation copy und remove
(4 answers)
Opened by SimplyFred at 2008-02-26 12:52
Du kannst entweder move aus File::Copy nehmen - dann einfach beide "copy"s durch "move" ersetzen oder so:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 # [...] if( -e $file ){ my ($d,$m,$y) = (localtime time)[3..5]; my $date = sprintf "%02d%02d%04d", $d,$m+1,$y+1900; my $new = 'tttt' . $date . '.bak'; copy $file, $new; unlink $file if -e $new; } # [...] OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |