美文网首页
获取沙盒中文件的大小

获取沙盒中文件的大小

作者: Desmond_ | 来源:发表于2018-07-13 16:50 被阅读20次

    废话不多说,直接上代码:

    let filePath = "The file path"
    do {
        let dic: [FileAttributeKey: Any] = try FileManager.default.attributesOfItem(atPath: filePath)
        let bytes = dic[FileAttributeKey.size]
        print(bytes)
    } catch {
        // 异常处理
    }
    

    获取到的 size 是字节数,所以,
    KB = bytes / 1024.0
    MB = bytes / 1024.0 / 1024.0
    GB = bytes / 1024.0 / 1024.0 / 1024.0
    ...

    相关文章

      网友评论

          本文标题:获取沙盒中文件的大小

          本文链接:https://www.haomeiwen.com/subject/kjkspftx.html