Python os.fstatvfs() 方法
python os.fstatvfs() 方法
os.fstatvfs() 方法用于返回包含文件描述符fd的文件的文件系統(tǒng)的信息,類似 statvfs()。
unix上可用。
fstatvfs 方法返回的結(jié)構(gòu):
- f_bsize: 文件系統(tǒng)塊大小
- f_frsize: 分棧大小
- f_blocks: 文件系統(tǒng)數(shù)據(jù)塊總數(shù)
- f_bfree: 可用塊數(shù)
- f_bavail:非超級(jí)用戶可獲取的塊數(shù)
- f_files: 文件結(jié)點(diǎn)總數(shù)
- f_ffree: 可用文件結(jié)點(diǎn)數(shù)
- f_favail: 非超級(jí)用戶的可用文件結(jié)點(diǎn)數(shù)
- f_fsid: 文件系統(tǒng)標(biāo)識(shí) id
- f_flag: 掛載標(biāo)記
- f_namemax: 最大文件長(zhǎng)度
語(yǔ)法
fstatvfs()方法語(yǔ)法格式如下:
os.fstatvfs(fd)
參數(shù)
- fd -- 文件的描述符。
返回值
返回包含文件描述符fd的文件的文件系統(tǒng)的信息。
實(shí)例
以下實(shí)例演示了 fstatvfs() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開文件 fd = os.open( "foo.txt", os.o_rdwr|os.o_creat ) # 獲取元組 info = os.fstatvfs(fd) print "文件信息 :", info # 獲取文件名最大長(zhǎng)度 print "文件名最大長(zhǎng)度 :%d" % info.f_namemax # 獲取可用塊數(shù) print "可用塊數(shù) :%d" % info.f_bfree # 關(guān)閉文件 os.close( fd)
執(zhí)行以上程序輸出結(jié)果為:
文件信息 : (4096, 4096, 2621440l, 1113266l, 1113266l, 8929602l, 8764252l, 8764252l, 0, 255) 文件名最大長(zhǎng)度 :255 可用塊數(shù) :1113266
相關(guān)文章
- Python 環(huán)境搭建
- Python 變量類型
- Python 元組
- Python File 方法
- Python CGI編程
- Python 網(wǎng)絡(luò)編程
- Python 多線程
- Python 矩陣
- Python 鏈表
- Python 二叉樹
- Python 樹遍歷算法
- Python 搜索算法
- Python 攤銷分析
- Python3 解釋器
- Python3 列表(List)
- Python3 元組(Tuple)
- Python3 字典(Dictionary)
- Python3 for while 循環(huán)語(yǔ)句
- Python3 迭代器
- Python3 函數(shù)