Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.fstat()
Python中的方法用於獲取文件描述符的狀態。
文件描述符是一個小整數值,對應於當前進程已打開的文件。
文件描述符指示資源並充當執行各種較低級別I /O操作(如讀取,寫入,發送等)的句柄。
例如:標準輸入通常是值為0的文件描述符,標準輸出通常是值為1的文件描述符,標準錯誤通常是值為2的文件描述符。
當前進程打開的其他文件將獲得值3、4、5,依此類推。
os.fstat()
方法等效於os.stat(fd)
方法。
用法: os.fstat(fd)
參數:
fd:文件描述符。
返回類型:此方法返回os類的stat_result對象,該對象表示給定文件描述符的狀態。
返回的“ stat_result”對象是具有以下命名屬性的元組:
- st_mode:表示文件類型和文件模式位(權限)。
- st_ino:表示Unix上的inode編號和Windows平台上的文件索引。
- st_dev:表示此文件所在設備的標識符。
- st_nlink:表示硬鏈接的數量。
- st_uid:表示文件所有者的用戶標識符。
- st_gid:表示文件所有者的組標識符。
- st_size:表示文件大小,以字節為單位。
- st_atime:表示最近訪問的時間。以秒為單位。
- st_mtime:表示最近一次內容修改的時間。以秒為單位。
- st_ctime:表示Unix上最近的元數據更改時間和Windows上的創建時間。以秒為單位。
- st_atime_ns:與st_atime相同,但時間以納秒為單位表示為整數。
- st_mtime_ns:與st_mtime相同,但是時間以納秒為單位表示為整數。
- st_ctime_ns:與st_ctime相同,但是時間以納秒為單位表示為整數。
- st_blocks:代表分配給文件的512字節塊的數量。
- st_rdev:它表示設備的類型(如果是inode設備)。
- st_flags:表示用戶定義的文件標誌。
注意:某些屬性取決於平台,並取決於可用性。
代碼:使用os.fstat()方法獲取文件描述符的狀態
# Python program to explain os.fstat() method
# importing os module
import os
# Path
path = "/home / ihritik / Desktop / file1.txt"
# open the file represented by
# the above given path and get
# the file descriptor associated
# with it using os.open() method
fd = os.open(path, os.O_RDONLY)
# Get the status of the
# file descriptor using
# os.fstat() method
status = os.fstat(fd)
# Print the status of
# the file descriptor
print(status)
# close the file descriptor
os.close(fd)
輸出:
os.stat_result(st_mode=33188, st_ino=801111, st_dev=2056, st_nlink=1, st_uid=1000, st_gid=1000, st_size=6550, st_atime=1560377051, st_mtime=1560377051, st_ctime=1560377051)
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.fstat() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。