我的应用程序需要知道 APFS 卷上的可用空间。
从 macOS High Sierra 和 APFS 开始,操作系统似乎可以“保留”可清除的磁盘空间。
使用 NSFileManager 函数时,它只返回“真正的”可用空间:
NSDictionary* pathAttrs = [[NSFileManager defaultManager] fileSystemAttributesAtPath: path];
NSNumber* pathSize = pathAttrs[ NSFileSystemSize];
NSNumber* pathFreeSize = pathAttrs[ NSFileSystemFreeSize];
我的问题:如何计算或估计这个“可清除”的可用空间?