Windows C++ 로 시스템 DISK 사용률 출력하기
프로그래밍/C, C++2021. 4. 22. 09:33
반응형
BOOL fResult; unsigned __int64 i64FreeBytesToCaller, i64TotalBytes, i64FreeBytes; fResult = GetDiskFreeSpaceEx(L"C:", (PULARGE_INTEGER)&i64FreeBytesToCaller, (PULARGE_INTEGER)&i64TotalBytes, (PULARGE_INTEGER)&i64FreeBytes); if (fResult) { printf("Available space to caller = %I64u MB\n", i64FreeBytesToCaller / (1024 * 1024)); printf("Total space = %I64u MB\n", i64TotalBytes / (1024 * 1024)); printf("Free space on drive = %I64u MB\n", i64FreeBytes / (1024 * 1024)); } |
[출처] https://stackoverflow.com/questions/11917946/how-do-i-get-available-disk-space-from-windows-using-c
반응형
'프로그래밍 > C, C++' 카테고리의 다른 글
C++ 에서 구동 파일의 절대 경로 확인하기 (windows) (0) | 2021.05.17 |
---|---|
(에러) 인수 1을(를) 'ATL::CString'에서 'const char *'(으)로 변환할 수 없습니다. (0) | 2021.05.14 |
Windows C++ 로 시스템 메모리(MEM) 사용률 출력하기 (0) | 2021.04.22 |
Windows C++ 로 시스템 CPU 사용률 출력하기 (0) | 2021.04.22 |
Visual Studio 2019 설치 (C / C++컴파일러) 및 몇가지 컴파일 에러 해결 방법 (0) | 2021.04.19 |
댓글()