How much storage am I using?

1

I am using Objective-C to retrieve some information about the hard drive. I successfully retrieve the amount used in bytes.

However I am having trouble converting bytes to gigabytes. When doing this programatically, I get 76,768,641,024 bytes. I then convert this to GB: 76,768,641,024 bytes/(1024* 1024 * 1024) = 71.5 GB. My Mac reports the exact same amount of bytes. However it reports that this is equal to 76.77 GB!

Why is there a difference in GB if the amount of bytes is the same?

I am on a iMac running OSX Snowleopard.

user117094

Posted 2012-07-03T22:12:24.580

Reputation:

Answers

6

The difference is in your measurement. OSX is using the STANDARD measuring system.

1 GB (GigaBytes) = 1000 MB (MegaBytes)


The non-standard measurement used, for example, in Windows is:

1 GiB (GibiBytes) = 1024 MiB (MibiBytes)

http://en.wikipedia.org/wiki/Gibibyte

user127350

Posted 2012-07-03T22:12:24.580

Reputation: