Created
June 4, 2018 05:24
-
-
Save bob910078/1e6d006291dfed77fa404cf592fc0bd5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
extension UIDevice { | |
//MARK: Get String Value | |
func MBFormatter(_ bytes: Int64) -> String { | |
let formatter = ByteCountFormatter() | |
formatter.allowedUnits = ByteCountFormatter.Units.useMB | |
formatter.countStyle = ByteCountFormatter.CountStyle.decimal | |
formatter.includesUnit = false | |
return formatter.string(fromByteCount: bytes) as String | |
} | |
var totalDiskSpaceInGB: String { | |
return ByteCountFormatter.string(fromByteCount: totalDiskSpaceInBytes, countStyle: ByteCountFormatter.CountStyle.decimal) } | |
var freeDiskSpaceInGB: String { | |
return ByteCountFormatter.string(fromByteCount: freeDiskSpaceInBytes, countStyle: ByteCountFormatter.CountStyle.decimal) } | |
var usedDiskSpaceInGB: String { | |
return ByteCountFormatter.string(fromByteCount: usedDiskSpaceInBytes, countStyle: ByteCountFormatter.CountStyle.decimal) } | |
var totalDiskSpaceInMB: String { | |
return MBFormatter(totalDiskSpaceInBytes) } | |
var freeDiskSpaceInMB: String { | |
return MBFormatter(freeDiskSpaceInBytes) } | |
var usedDiskSpaceInMB: String { | |
return MBFormatter(usedDiskSpaceInBytes) } //MARK: Get raw value | |
var totalDiskSpaceInBytes:Int64 { | |
guard let systemAttributes = try? FileManager.default.attributesOfFileSystem(forPath: NSHomeDirectory() as String), | |
let space = (systemAttributes[FileAttributeKey.systemSize] as? NSNumber)?.int64Value else { | |
return 0 | |
} | |
return space | |
} | |
/* Total available capacity in bytes for "Important" resources, including space expected to be cleared by purging non-essential and cached resources. "Important" means something that the user or application clearly expects to be present on the local system, but is ultimately replaceable. This would include items that the user has explicitly requested via the UI, and resources that an application requires in order to provide functionality. Examples: A video that the user has explicitly requested to watch but has not yet finished watching or an audio file that the user has requested to download. This value should not be used in determining if there is room for an irreplaceable resource. In the case of irreplaceable resources, always attempt to save the resource regardless of available capacity and handle failure as gracefully as possible. */ | |
var freeDiskSpaceInBytes: Int64 { | |
if #available(iOS 11.0, *) { | |
if let space = try? URL(fileURLWithPath: NSHomeDirectory() as String).resourceValues(forKeys: [URLResourceKey.volumeAvailableCapacityForImportantUsageKey]).volumeAvailableCapacityForImportantUsage { | |
return space ?? 0 | |
} else { | |
return 0 | |
} | |
} else { | |
if let systemAttributes = try? FileManager.default.attributesOfFileSystem(forPath: NSHomeDirectory() as String), | |
let freeSpace = (systemAttributes[FileAttributeKey.systemFreeSize] as? NSNumber)?.int64Value { | |
return freeSpace | |
} else { | |
return 0 | |
} | |
} | |
} | |
var usedDiskSpaceInBytes:Int64 { return totalDiskSpaceInBytes - freeDiskSpaceInBytes } | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reference Source:
http://ios.dovov.com/swiftios-5.html