-
[Python] Windows OS Disk Usage Check. (윈도우 운영체제 디스크 사용량 체크)Python/Python Programming 2019. 10. 18. 21:40
import shutil.disk_usage(drive) : 드라이브의 전체용량, 사용량, 잔여량 정보를 리턴
import shutil drive = 'c:' c = dict([x for x in zip(['total','used','free'], shutil.disk_usage(drive))]) print(c) print(drive,'Partition used %d %%' %(c['used']/c['total']*100)) ----------------------------------------------------------------------------- {'total': 255005159424, 'used': 224621703168, 'free': 30383456256} c: Partition used 88 %
'Python > Python Programming' 카테고리의 다른 글
[Python] Integer maximum value. (정수 자료형 범위) (0) 2019.11.01 [Python] reduce 함수 (0) 2019.10.24 [Python] dateutil 모듈을 이용한 전년,전월,전일,D-day 날짜 구하기 (0) 2019.10.21 [Python] Find all index values of a specific element using enumerate. (enumerate를 활용한 특정요소의 리스트 index 값 모두 찾기) (0) 2019.10.20 [Python] Extract directory and filename. (디렉토리와 파일명 추출하기) (0) 2019.10.18 [Python] Directory make and remove with subdirectories. (하위 디렉토리 포함 생성과 삭제) (0) 2019.10.18 [Python] Directory make and remove. (디렉토리 생성과 삭제) (0) 2019.10.18 [Python] index 함수 - 배열에서 원하는 값의 위치 찾기 (0) 2019.10.16