Thread File::stat - stat() liefert keine Werte (10 answers)
Opened by crojay at 2011-12-28 14:29

crojay
 2011-12-28 14:29
#155123 #155123
User since
2011-03-08
81 Artikel
BenutzerIn
[default_avatar]
Hi,

ich möchte in meiner MEthode, die neueste Datei einer Liste ermitteln. Dazu wollte ich mittels (stat($file))[9] das modify Datum erhalten. Jedoch liefert mir die Methode gar nichts. Weiss jemand woran es liegt, hier mein code

Code (perl): (dl )
1
2
3
4
5
6
foreach my $file(@files){
                        if (-e $file){          
                                my @fileProps = stat($file);
                                &log_this($customer,$ordername,"filestamp of file $file is: " . $fileProps[9] );
                        }
                }


Output:
2011_12_28_14_23_40:filestamp of file f:\TEST.10013907.ps is:
2011_12_28_14_23_40:filestamp of file f:\TEST.10013908.ps is:
2011_12_28_14_23_40:filestamp of file f:\TEST.10013909.ps is:
2011_12_28_14_23_40:filestamp of file f:\TEST.10013910.ps is:

modedit Editiert von GwenDragon: Titel gekürzt
Last edited: 2011-12-28 14:48:38 +0100 (CET)

View full thread File::stat - stat() liefert keine Werte