当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.lstat()用法及代码示例



描述

Python方法lstat()非常类似于 fstat() 并返回有关文件的信息,但不遵循符号链接。这是不支持符号链接的平台(如 Windows)上 fstat() 的别名。

这是 lstat 方法返回的结构 -

  • st_dev− 包含文件的设备 ID

  • st_ino- 节点编号

  • st_mode− 保护

  • st_nlink- 硬链接的数量

  • st_uid− 所有者的用户 ID

  • st_gid− 所有者的组 ID

  • st_rdev− 设备 ID(如果是特殊文件)

  • st_size- 总大小,以字节为单位

  • st_blksize− 文件系统 I/O 的块大小

  • st_blocks- 分配的块数

  • st_atime− 上次访问时间

  • st_mtime− 上次修改时间

  • st_ctime− 上次状态变化的时间

用法

以下是语法lstat()方法 -

os.lstat(path)

参数

  • path- 这是将返回信息的文件。

返回值

此方法返回有关文件的信息。

示例

下面的例子展示了 lstat() 方法的用法。

#!/usr/bin/python

import os, sys

# Open a file
path = "/var/www/html/foo.txt"
fd = os.open( path, os.O_RDWR|os.O_CREAT )

# Close opened file
os.close( fd )

# Now get  the touple
info = os.lstat(path)

print "File Info:", info

# Now get uid of the file
print "UID of the file:%d" % info.st_uid

# Now get gid of the file
print "GID of the file:%d" % info.st_gid

当我们运行上面的程序时,它会产生以下结果 -

File Info:(33261, 3450178L, 103L, 1, 500, 500, 0L, 
             1238866944, 1238866944, 1238948312)
UID of the file:500
GID of the file:500

相关用法


注:本文由纯净天空筛选整理自 Python os.lstat() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。