當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl lstat用法及代碼示例



描述

此函數執行與 FILEHANDLE 或 EXPR 或 $_ 引用的文件上的 stat 函數相同的測試

如果文件是一個符號鏈接,它返回鏈接的信息,而不是它指向的文件。否則,它返回文件的信息。

用法

以下是此函數的簡單語法 -

lstat FILEHANDLE

lstat EXPR

lstat

返回值

此函數在列表上下文中返回 13 個元素的列表,這些字段如下 -

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− 紀元是格林威治標準時間 1970 年 1 月 1 日 00:00。

示例

以下是顯示其基本用法的示例代碼 -

#!/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;

相關用法


注:本文由純淨天空篩選整理自 Perl lstat Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。