文件操作 - rplyto_demo
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/doc/perl-MailTools-2.12/examples/rplyto_demo
编辑文件内容
#!/usr/bin/perl -w use Mail::Internet; $mail = Mail::Internet->new([<>]); $rply = $mail->reply(Keep => [qw(Newsgroups)]); $file = "/tmp/reply.$$"; open(REPLY,">$file") || die "Cannot open $file:$!\n"; $rply->print(\*REPLY); close(REPLY); $editor = $ENV{"EDITOR"} || die "\$EDITOR not defined\n"; warn "$editor :$!\n" if (system("$editor $file")); # Cleanup unlink($file,$file . '%',$file . '~'); exit 0;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件