美文网首页
iOS 沙盒文件重命名

iOS 沙盒文件重命名

作者: gaookey | 来源:发表于2020-06-17 13:51 被阅读0次
    func setupFileRename(_ filePath: String) -> String {
        
        let url = URL(fileURLWithPath: filePath)
        let newPath = filePath.replacingOccurrences(of: url.lastPathComponent, with: "")
        let moveToPath = newPath + currentTime() + "." + url.pathExtension
        
        do {
            try FileManager.default.moveItem(at: url, to: URL(fileURLWithPath: moveToPath))
            return moveToPath
        } catch {
            return ""
        }
    }
    
    func currentTime() -> String {
        let formatter = DateFormatter()
        formatter.dateFormat = "yyyyMMddHHmmss"
        return formatter.string(from: Date())
    }
    

    相关文章

      网友评论

          本文标题:iOS 沙盒文件重命名

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