Created
January 21, 2014 12:25
-
-
Save vgerak/8539104 to your computer and use it in GitHub Desktop.
Get disk usage with statvfs()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <sys/statvfs.h> | |
int main(int argc, const char *argv[]) | |
{ | |
const unsigned int GB = (1024 * 1024) * 1024; | |
struct statvfs buffer; | |
int ret = statvfs(argv[1], &buffer); | |
if (!ret) { | |
const double total = (double)(buffer.f_blocks * buffer.f_frsize) / GB; | |
const double available = (double)(buffer.f_bfree * buffer.f_frsize) / GB; | |
const double used = total - available; | |
const double usedPercentage = (double)(used / total) * (double)100; | |
printf("Total: %f --> %.0f\n", total, total); | |
printf("Available: %f --> %.0f\n", available, available); | |
printf("Used: %f --> %.1f\n", used, used); | |
printf("Used Percentage: %f --> %.0f\n", usedPercentage, usedPercentage); | |
} | |
return ret; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment