Thread Datei-Datum ermitteln (2 answers)
Opened by crojay at 2011-08-24 01:16

mark05
 2011-08-25 15:09
#151796 #151796
User since
2010-01-05
129 Artikel
BenutzerIn
[default_avatar]
hi
das sollte alles mit stat gehen

jedoch muss man dort die zeit umrechnen da stat epoch-time ausgibt.

http://en.wikipedia.org/wiki/Unix_time

ergo koennte das so aussehen
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/perl -w
use strict;
use warnings;
use DateTime;

my @filestats = stat '/etc/fstab';
my $atime = $filestats[8];
my $mtime = $filestats[9];
my $ctime = $filestats[10];

print "atime als epochtime = $atime atime im gewuenschten format new = ",convert_epochtime($atime),"\n";
print "mtime als epochtime = $mtime atime im gewuenschten format new = ",convert_epochtime($mtime),"\n";
print "ctime als epochtime = $ctime atime im gewuenschten format new = ",convert_epochtime($ctime),"\n";


sub convert_epochtime {
my $epochtime = shift;
my $dt = DateTime->from_epoch( epoch => $epochtime );
my $newtimeformat = $dt->ymd;
$newtimeformat .= '_';
$newtimeformat .= $dt->hms;
return ($newtimeformat);
}

1;


wobei DateTime ein modul vom cpan ist.

holger

View full thread Datei-Datum ermitteln