美文网首页
Swift文件管理

Swift文件管理

作者: MichaelLue | 来源:发表于2020-03-16 23:09 被阅读0次

创建文件夹

try! FileManager.default.createDirectory(at: URL.init(fileURLWithPath: myDirectory1), withIntermediateDirectories: true, attributes: nil)

将图片转化为DATA保存到沙盒

‘let image = UIImage.init(named: "launch")        if let imageData = image!.jpegData(compressionQuality: 1.0) as NSData? {            let fullPath = myDirectory1.appending("sss.jpg")            imageData.write(toFile: fullPath, atomically: true)            print("fullPath=\(fullPath)")        }’

相关文章

网友评论

      本文标题:Swift文件管理

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