tell application "System Events"
set freeSpace to free space of disk "Macintosh HD" as real
return freeSpace
end tell
Which language?
Sorry I thought this was an Xcode forum. Objective C.
unsigned long long fs_size;
NSDictionary *fs_attrib = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[pathURL path] error:nil];
fs_size = [[fs_attrib valueForKey:NSFileSystemSize] longLongValue];
Another way is to use the NSFileManager class.
Something like:
Code:unsigned long long fs_size; NSDictionary *fs_attrib = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[pathURL path] error:nil]; fs_size = [[fs_attrib valueForKey:NSFileSystemSize] longLongValue];
diskutil list