在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
//获取文件大小 func getSize(url: URL)->UInt64 { var fileSize : UInt64 = 0 do { let attr = try FileManager.default.attributesOfItem(atPath: url.path) fileSize = attr[FileAttributeKey.size] as! UInt64 let dict = attr as NSDictionary fileSize = dict.fileSize() } catch { print("Error: \(error)") } return fileSize } 获取之前最好先判断下文件是否存在 FileManager.default.fileExists(atPath: path)
|
请发表评论