📜  Python| os.stat() 方法

📅  最后修改于: 2022-05-13 01:55:39.753000             🧑  作者: Mango

Python| os.stat() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

Python中的os.stat()方法在指定路径上执行stat()系统调用。此方法用于获取指定路径的状态。

代码:使用 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)