macOS 获取文件夹大小

macOS 获取文件夹大小

获取文件夹大小的扩展如下:

swift 复制代码
extension URL {
    var fileSize: Int? { // in bytes
        do {
            let val = try self.resourceValues(forKeys: [.totalFileAllocatedSizeKey, .fileAllocatedSizeKey])
            return val.totalFileAllocatedSize ?? val.fileAllocatedSize
        } catch {
            print(error)
            return nil
        }
    }
}
extension FileManager {
    func folderSize(_ dir: URL) -> Int? {
        if let enumerator = self.enumerator(at: dir, includingPropertiesForKeys: [.totalFileAllocatedSizeKey, .fileAllocatedSizeKey], options: [], errorHandler: { (_, error) -> Bool in
            print(error)
            return false
        }) {
            var bytes = 0
            for case let url as URL in enumerator {
                bytes += url.fileSize ?? 0
            }
            return bytes
        } else {
            return nil
        }
    }
}

但是返回来的是字节数,如果要转换成 MB 或者 GB,需要自己做转换,那再来扩展吧。

swift 复制代码
extension FileManager {
    func convertBytesToReadableUnit(_ bytes: Int64) -> String {
        let formatter = ByteCountFormatter()
        formatter.countStyle = .binary
        formatter.allowedUnits = [.useAll]
        formatter.includesUnit = true
        formatter.isAdaptive = true
        return formatter.string(fromByteCount: bytes)
    }
}

let bytes: Int64 = 123456789
let readableUnit = FileManager.default.convertBytesToReadableUnit(bytes)
print(readableUnit) // Output: "117.7 MB"
相关推荐
清风细雨_林木木3 小时前
Mac 清理缓存,提高内存空间
macos·缓存
Macdo_cn3 小时前
Screen Wonders for Mac v3.3.1 3D屏保应用 支持M、Intel芯片
macos·音视频
秋窗719 小时前
Mac下Python版本管理,适用于pyenv不起作用的情况
开发语言·python·macos
獨枭1 天前
如何在 macOS 上配置 MySQL 环境变量
数据库·mysql·macos
清风细雨_林木木1 天前
解决 Mac 只显示文件大小,不显示目录大小
macos
9144062321 天前
xcode打包导出ipa
ide·macos·xcode
coooliang2 天前
【iOS】SwiftUI状态管理
ios·swiftui·swift
天荒地老笑话么2 天前
Mac安装配置Tomcat 8
java·macos·tomcat
自娱自乐222 天前
mac下使用webstorm监听less文件自动生成wxss文件
macos·less·webstorm
一只往上爬的蜗牛2 天前
【DeepSeek】Mac m1电脑部署DeepSeek
macos·deepseek