Python os.pathconf() 方法
python os.pathconf() 方法
os.pathconf() 方法用于返回一個(gè)打開的文件的系統(tǒng)配置信息。
unix 平臺(tái)下可用。
語(yǔ)法
fpathconf()方法語(yǔ)法格式如下:
os.fpathconf(fd, name)
參數(shù)
- name -- 文件描述符
name -- 檢索的系統(tǒng)配置的值,它也許是一個(gè)定義系統(tǒng)值的字符串,這些名字在很多標(biāo)準(zhǔn)中指定(posix.1, unix 95, unix 98, 和其它)。一些平臺(tái)也定義了一些額外的名字。這些名字在主操作系統(tǒng)上pathconf_names的字典中。對(duì)于不在pathconf_names中的配置變量,傳遞一個(gè)數(shù)字作為名字,也是可以接受的。
返回值
返回文件的系統(tǒng)信息。
實(shí)例
以下實(shí)例演示了 fpathconf() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開文件 fd = os.open( "foo.txt", os.o_rdwr|os.o_creat ) print "%s" % os.pathconf_names # 獲取文件最大連接數(shù) no = os.fpathconf(fd, 'pc_link_max') print "maximum number of links to the file. :%d" % no # 獲取文件名最大長(zhǎng)度 no = os.fpathconf(fd, 'pc_name_max') print "maximum length of a filename :%d" % no # 關(guān)閉文件 os.close( fd) print "關(guān)閉文件成功!!"
執(zhí)行以上程序輸出結(jié)果為:
關(guān)閉文件成功!!
相關(guān)文章
- Python continue 語(yǔ)句
- Python 函數(shù)
- Python 文件I/O
- Python 正則表達(dá)式
- Python 網(wǎng)絡(luò)編程
- Python 多線程
- Python XML 解析
- Python2 與 Python3?? 版本區(qū)別
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 矩陣
- Python 集合
- Python 節(jié)點(diǎn)
- Python 遞歸
- Python 算法類
- Python3 簡(jiǎn)介
- Python3 數(shù)字(Number)
- Python3 字符串(String)
- Python3 函數(shù)
- Python3 OS 文件/目錄方法
- Python3 SMTP發(fā)送郵件