free_space.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright (C) 2007 Nokia Corporation.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  16. * 02110-1301 USA
  17. *
  18. * Author: Adrian Hunter
  19. */
  20. #include <stdio.h>
  21. #include <stdint.h>
  22. #include <string.h>
  23. #include <sys/statvfs.h>
  24. int main(int argc, char *argv[])
  25. {
  26. const char *dir_name = ".";
  27. uint64_t free_space;
  28. struct statvfs fs_info;
  29. if (argc > 1) {
  30. if (strncmp(argv[1], "--help", 6) == 0 ||
  31. strncmp(argv[1], "-h", 2) == 0) {
  32. printf( "Usage is: "
  33. "free_space [directory]\n"
  34. "\n"
  35. "Display the free space of the file system "
  36. "of the directory given\n"
  37. "or the current directory if no "
  38. "directory is given.\nThe value output is "
  39. "in bytes.\n"
  40. );
  41. return 1;
  42. }
  43. dir_name = argv[1];
  44. }
  45. if (statvfs(dir_name, &fs_info) == -1)
  46. return 1;
  47. free_space = (uint64_t) fs_info.f_bavail * (uint64_t) fs_info.f_frsize;
  48. printf("%llu\n", (unsigned long long) free_space);
  49. return 0;
  50. }