Thread Dateioperation copy und remove (4 answers)
Opened by SimplyFred at 2008-02-26 12:52

renee
 2008-02-27 09:47
#106406 #106406
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du kannst entweder move aus CPAN: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/

View full thread Dateioperation copy und remove