Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.stat()
Python中的方法在指定路徑上執行stat()係統調用。此方法用於獲取指定路徑的狀態。
用法: os.stat(path)
參數:
path:代表有效路徑的字符串或字節對象
返回類型:此方法返回類“ os.stat_result”的“ 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.stat()方法
# Python program to explain os.stat() method
# importing os module
import os
# path
path = '/home/User/Documents/file.txt'
# Get the status of
# the specified path
status = os.stat(path)
# Print the status
# of the specified path
print(status)
輸出:
os.stat_result(st_mode=33188, st_ino=795581, st_dev=2056, st_nlink=1, st_uid=1000, st_gid=1000, st_size=243, st_atime=1531567080, st_mtime=1530346690, st_ctime=1530346690)
相關用法
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.get_inheritable()用法及代碼示例
- Python os.getloadavg()用法及代碼示例
- Python os.cpu_count()用法及代碼示例
- Python os.remove()用法及代碼示例
- Python os.set_inheritable()用法及代碼示例
- Python os.mkdir()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python os.system()用法及代碼示例
- Python os.pread()用法及代碼示例
- Python os.makedirs()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.stat() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。