Python os.major() 方法
python os.major() 方法
os.major() 方法用于從原始的設(shè)備號中提取設(shè)備major號碼 (使用stat中的st_dev或者st_rdev field)。
語法
major()方法語法格式如下:
os.major(device)
參數(shù)
- device -- 原始的設(shè)備號中提取設(shè)備major號碼 (使用stat中的st_dev或者st_rdev field)。
返回值
返回設(shè)備major號碼。
實例
以下實例演示了 major() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys path = "/var/www/html/foo.txt" # 獲取元組 info = os.lstat(path) # 獲取 major 和 minor 設(shè)備號 major_dnum = os.major(info.st_dev) minor_dnum = os.minor(info.st_dev) print "major 設(shè)備號 :", major_dnum print "minor 設(shè)備號 :", minor_dnum
執(zhí)行以上程序輸出結(jié)果為:
major 設(shè)備號 : 0 minor 設(shè)備號 : 103
相關(guān)文章
- Python 教程
- Python 元組
- Python File 方法
- Python 操作 MySQL 數(shù)據(jù)庫
- Python SMTP發(fā)送郵件
- Python2 與 Python3?? 版本區(qū)別
- Python 列表
- Python 集合
- Python 隊列
- Python 高級鏈表
- Python 哈希表
- Python 算法設(shè)計
- Python 搜索算法
- Python 攤銷分析
- Python3 基礎(chǔ)語法
- Python3 數(shù)據(jù)類型
- Python3 列表(List)
- Python3 for while 循環(huán)語句
- Python3 輸入和輸出
- Python3 命名空間