gpt4 book ai didi

windows - 如何在 Windows XP 上使用 Perl 归档 .log 文件?

转载 作者:可可西里 更新时间:2023-11-01 12:05:05 27 4
gpt4 key购买 nike

以尽可能简单的方式,我想知道是否有人知道如何通过简单地将当前“localtime()”命名为文件名的一部分来将 .log 文件归档到 Windows XP 目录中? (不要假设日志文件上有锁。)我尝试了各种不同的方法来解决这个问题,但无法解决它...而且网络上也没有很好的例子。

这是我要找的:

for (all files > that 1 day old)   
rename file to file.[datestamp].log
end

最佳答案

嗯,这看起来很简单,我可能误解了什么。任务是将例如“yada.log”移动到“yada.2011-05-04.log”?那么这个怎么样:

use strict;
use warnings;

use File::Copy;
use POSIX qw(strftime);

my $dir = $ARGV[0] or die "Usage: $0 <directory>";
my $now_string = strftime "%Y-%m-%d_%H%M%S", localtime;

opendir DIR, $dir or die $!;
my @files = readdir DIR;

chdir $dir or die $!;
for my $file (@files) {
next if (-d $file);
next unless ($file =~ /^(.*)(\.log)$/i);
my $dst = $1 . "." . $now_string . $2;
move ($file, $dst) or die "Failed to move $file: $!";
}

关于windows - 如何在 Windows XP 上使用 Perl 归档 .log 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5759412/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com