Python os.stat() 方法
python os.stat() 方法
os.stat() 方法用于在給定的路徑上執(zhí)行一個(gè)系統(tǒng) stat 的調(diào)用。
語法
stat()方法語法格式如下:
os.stat(path)
參數(shù)
- path -- 指定路徑
返回值
stat 結(jié)構(gòu):
- st_mode: inode 保護(hù)模式
- st_ino: inode 節(jié)點(diǎn)號。
- st_dev: inode 駐留的設(shè)備。
- st_nlink: inode 的鏈接數(shù)。
- st_uid: 所有者的用戶id。
- st_gid: 所有者的組id。
- st_size: 普通文件以字節(jié)為單位的大?。话却承┨厥馕募臄?shù)據(jù)。
- st_atime: 上次訪問的時(shí)間。
- st_mtime: 最后一次修改的時(shí)間。
- st_ctime: 由操作系統(tǒng)報(bào)告的"ctime"。在某些系統(tǒng)上(如unix)是最新的元數(shù)據(jù)更改的時(shí)間,在其它系統(tǒng)上(如windows)是創(chuàng)建時(shí)間(詳細(xì)信息參見平臺的文檔)。
實(shí)例
以下實(shí)例演示了 stat() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 顯示文件 "a2.py" 信息 statinfo = os.stat('a2.py') print statinfo
執(zhí)行以上程序輸出結(jié)果為:
posix.stat_result(st_mode=33188, st_ino=3940649674337682l, st_dev=277923425l, st _nlink=1, st_uid=400, st_gid=401, st_size=335l, st_atime=1330498089, st_mtime=13 30498089, st_ctime=1330498089)
相關(guān)文章
- Python 教程
- Python 日期和時(shí)間
- Python 模塊
- Python CGI編程
- Python 操作 MySQL 數(shù)據(jù)庫
- Python SMTP發(fā)送郵件
- Python 矩陣
- Python 集合
- Python 節(jié)點(diǎn)
- Python 棧
- Python Deque
- Python 搜索樹
- Python 搜索算法
- Python 算法類
- Python3 if else 語句
- Python3 函數(shù)
- Python3 模塊
- Python3 正則表達(dá)式
- Python3 網(wǎng)絡(luò)編程
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動