os.major(device) 메서드는 원시 장치 번호(일반적으로 stat의 st_dev 또는 st_rdev 필드)에서 장치 주요 번호를 추출합니다.
예
이 방법을 사용하려면 원시 장치 번호가 있어야 합니다. 다음과 같이 사용할 수 있습니다.
import os, sys path = "/var/www/html/foo.txt" # Now get the stat tuple info = os.lstat(path) # Get major device number major_dnum = os.major(info.st_dev) print "Major Device Number :", major_dnum
출력
이것은 출력을 줄 것입니다:
Major Device Number : 0