- 基本 Perl
- Perl - 主页
- Perl - 简介
- Perl - 环境
- Perl - 语法概述
- Perl - 数据类型
- Perl - 变量
- Perl - 标量
- Perl - 数组
- Perl - 哈希表
- Perl - IF...ELSE
- Perl - 循环
- Perl - 操作符
- Perl - 日期和时间
- Perl - 子例程
- Perl - 引用
- Perl - 格式
- Perl - 文件 I/O
- Perl - 目录
- Perl - 错误处理
- Perl - 特殊变量
- Perl - 编码规范
- Perl - 正则表达式
- Perl - 发送电子邮件
- 高级 Perl
- Perl - 套接字编程
- Perl - 面向对象
- Perl - 数据库访问
- Perl - CGI 编程
- Perl - 包和模块
- Perl - 进程管理
- Perl - 嵌入式文档
- Perl - 函数引用
- 有用的 Perl 资源
- Perl - 答疑解惑
- Perl - 快速指南
- 有用的 Perl 资源
- Perl - 讨论
Perl stat 函数
描述
此函数返回一个包含 13 个元素的数组,给出由 FILEHANDLE、EXPR 或 $_ 指定的文件状态信息。下面表中显示了返回的值列表。如果在标量上下文中使用,则失败时返回 0,成功时返回 1。
请注意,其中一些元素的支持与系统相关。请查看文档以了解完整列表。
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
语法
下面是此函数的简单语法 -
stat FILEHANDLE stat EXPR stat
返回值
此函数返回 ARRAY,($device, $inode, $mode, $nlink, $uid, $gid, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks)
示例
下面是展示其基本用法的示例代码 -
#!/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");
当执行以上代码时,它将产生以下结果 -
stat() 2065, 5374250, 1508051555
perl_function_references.htm
广告