OSX : get size on disk for a file/directory

529 Views Asked by At

I am looking for a way (the fastest, working for both files and directory and accurate) to get the size of disk (not the file size) of a file or directory, using either: - BSD functions - Carbon functions - Cocoa functions

Thanks !

1

There are 1 best solutions below

0
On BEST ANSWER

If you have a file URL, you can use -[NSURL resourceValuesForKeys:error:] to get these values:

  • NSURLFileSizeKey; <-- file size in bytes
  • NSURLFileAllocatedSizeKey; <-- file size on disk