Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.minor()
Python中的方法用於從指定的原始設備號(通常是os.stat()方法返回的os.stat_result對象的st_dev或st_rdev屬性值)中提取設備次設備號。 。
在Unix中,一切都是文件,有些是普通文件,有些是特殊文件。特殊文件可以在/dev目錄下找到。這些特殊文件稱為設備文件。字符設備和塊設備是最常見的設備文件類型。這些設備文件由Linux內核表示為一對數字(主設備號和次設備號)。主設備號指示用於訪問硬件的驅動程序。係統中的每個驅動程序都有一個唯一的主編號,並且其主設備編號相同的所有設備文件都由同一驅動程序控製。驅動程序使用次設備號來區分它控製的各種硬件。次設備號告訴內核要訪問的設備的特殊特性。
注意:此方法僅在UNIX平台上可用。
用法: os.minor(device)
參數:
device:表示原始設備號的整數值
返回類型:此方法返回代表設備次設備號的整數值。
代碼:使用os.minor()方法從原始設備號中提取設備次設備號
# Python program to explain os.minor() method
# importing os module
import os
# Get the raw device number
# of the home directory
device = os.stat("/home").st_dev
# Print the raw device number
print("Raw device number:", device)
# Extract the device minor number
# from the above raw device number
minor = os.minor(device)
# Print the device minor number
print("Device minor number:", minor)
輸出:
Raw device number:2056 Device minor number:8
參考: https://docs.python.org/3/library/os.html#os.minor
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.minor() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。