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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。