Skip to content

Instantly share code, notes, and snippets.

@kyleturner
Created February 8, 2012 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyleturner/1772502 to your computer and use it in GitHub Desktop.
Save kyleturner/1772502 to your computer and use it in GitHub Desktop.
Find the amount of free space on hard drive
NSDictionary* fileAttributes = [[NSFileManager defaultManager] attributesOfFileSystemForPath:@"/"
error:&error];
unsigned long long freeSpace = [[fileAttributes objectForKey:NSFileSystemFreeSize] longLongValue];
NSLog(@"free disk space: %dGB", (int)(freeSpace / 1073741824));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment