Funzione Perl stat

Descrizione

Questa funzione restituisce un array di 13 elementi che fornisce le informazioni sullo stato di un file, specificato da FILEHANDLE, EXPR o $ _. L'elenco dei valori restituiti è mostrato di seguito nella tabella. Se utilizzato in un contesto scalare, restituisce 0 in caso di errore, 1 in caso di successo.

Notare che il supporto per alcuni di questi elementi dipende dal sistema. Controlla la documentazione per un elenco completo.

Element Description
0 	Device number of file system
1 	Inode number
2 	File mode (type and permissions)
3 	Number of (hard) links to the file
4 	Numeric user ID of file.s owner
5 	Numeric group ID of file.s owner
6 	The device identifier (special files only)
7 	File size, in bytes
8 	Last access time since the epoch
9 	Last modify time since the epoch
10 	Inode change time (not creation time!) since the epoch
11 	Preferred block size for file system I/O
12	Actual number of blocks allocated

Sintassi

Di seguito è riportata la semplice sintassi per questa funzione:

stat FILEHANDLE

stat EXPR

stat

Valore di ritorno

Questa funzione restituisce ARRAY, ($ device, $ inode, $ mode, $ nlink, $ uid, $ gid, $ rdev, $ size, $ atime, $ mtime, $ ctime, $ blksize, $ blocks)

Esempio

Di seguito è riportato il codice di esempio che mostra il suo utilizzo di base:

#!/usr/bin/perl -w

($device, $inode, $mode, $nlink, $uid, $gid, $rdev, $size, $atime, $mtime,
   $ctime, $blksize, $blocks) = stat("/etc/passwd");

print("stat() $device, $inode, $ctime\n");

Quando viene eseguito il codice sopra, produce il seguente risultato:

stat() 2065, 5374250, 1508051555