Funzione Perl lstat

Descrizione

Questa funzione esegue gli stessi test della funzione stat su FILEHANDLE o sul file a cui fa riferimento EXPR o $ _

Se il file è un collegamento simbolico, restituisce le informazioni per il collegamento, anziché il file a cui punta. In caso contrario, restituisce le informazioni per il file.

Sintassi

Di seguito è riportata la semplice sintassi per questa funzione:

lstat FILEHANDLE

lstat EXPR

lstat

Valore di ritorno

Questa funzione restituisce un elenco di 13 elementi nel contesto dell'elenco, questi campi sono i seguenti:

0 dev      device number of filesystem
  1 ino      inode number
  2 mode     file mode  (type and permissions)
  3 nlink    number of (hard) links to the file
  4 uid      numeric user ID of file's owner
  5 gid      numeric group ID of file's owner
  6 rdev     the device identifier (special files only)
  7 size     total size of file, in bytes
  8 atime    last access time in seconds since the epoch
  9 mtime    last modify time in seconds since the epoch
 10 ctime    inode change time in seconds since the epoch (*)
 11 blksize  preferred block size for file system I/O
 12 blocks   actual number of blocks allocated

NOTE - L'epoca era alle 00:00 del 1 gennaio 1970 GMT.

Esempio

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

#!/usr/bin/perl -w

$filename = "/tmp/test.pl";
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,
   $blocks) = lstat($filename);
printf "File is %s,\n size is %s,\n perm %04o, mtime %s\n", $filename, $size, 
   $mode & 07777, scalar localtime $mtime;