Python3 os.minor() 方法

Python 3 教程 · 2019-02-07 15:28:06

概述

os.minor() 方法用于从原始的设备号中提取设备minor号码 (使用stat中的st_dev或者st_rdev field )。

语法

minor()方法语法格式如下:

os.minor(device)

参数

  • device -- 原始的设备(使用stat中的st_dev或者st_rdev field )

返回值

返回设备 minor 号。

实例

以下实例演示了 minor() 方法的使用:

#!/usr/bin/python3

import os, sys

path = "/var/www/html/foo.txt"

# 获取元组
info = os.lstat(path)

# 获取 major 和 minor 设备号
major_dnum = os.major(info.st_dev)
minor_dnum = os.minor(info.st_dev)

print ("Major 设备号 :", major_dnum)
print ("Minor 设备号 :", minor_dnum)

执行以上程序输出结果为:

Major 设备号 : 0
Minor 设备号 : 103

点击查看所有 Python 3 教程 文章: https://codercto.com/courses/l/10.html

查看所有标签

Scalability Rules

Scalability Rules

Martin L. Abbott、Michael T. Fisher / Addison-Wesley Professional / 2011-5-15 / USD 29.99

"Once again, Abbott and Fisher provide a book that I'll be giving to our engineers. It's an essential read for anyone dealing with scaling an online business." --Chris Lalonde, VP, Technical Operatio......一起来看看 《Scalability Rules》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

html转js在线工具
html转js在线工具

html转js在线工具