描述
方法stat()在给定的路径上执行 stat 系统调用。
用法
以下是语法stat()方法 -
os.stat(path)
参数
path- 这是路径,需要其统计信息。
返回值
以下是 stat 结构的成员列表:
- st_mode− 保护位。
- st_ino- inode 编号。
- st_dev- 设备。
- st_nlink- 硬链接的数量。
- st_uid− 所有者的用户 ID。
- st_gid− 所有者的组 ID。
- st_size- 文件的大小,以字节为单位。
- st_atime− 最近访问的时间。
- st_mtime− 最近一次内容修改的时间。
- st_ctime− 最近元数据更改的时间。
示例
下面的例子展示了 stat() 方法的用法。
# !/usr/bin/python3
import os, sys
# showing stat information of file "foo.txt"
statinfo = os.stat('foo.txt')
print (statinfo)
结果
当我们运行上述程序时,它会产生以下结果 -
os.stat_result(st_mode = 33206, st_ino = 281474976797706, st_dev = 1017554828, st_nlink = 1, st_uid = 0, st_gid = 0, st_size = 13, st_atime = 1455649253, st_mtime = 1438077266, st_ctime = 1455560006)
相关用法
- Python 3 os.statvfs()用法及代码示例
- Python 3 os.stat_float_times()用法及代码示例
- Python 3 os.symlink()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 os.unlink()用法及代码示例
- Python 3 os.major()用法及代码示例
- Python 3 os.rmdir()用法及代码示例
- Python 3 os.fdopen()用法及代码示例
- Python 3 os.fdatasync()用法及代码示例
- Python 3 os.isatty()用法及代码示例
- Python 3 os.rename()用法及代码示例
- Python 3 os.walk()用法及代码示例
- Python 3 os.renames()用法及代码示例
- Python 3 os.makedirs()用法及代码示例
- Python 3 os.utime()用法及代码示例
- Python 3 os.tcgetpgrp()用法及代码示例
- Python 3 os.lchown()用法及代码示例
- Python 3 os.mknod()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - os.stat() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。