美文网首页
iOS 修改文件名称

iOS 修改文件名称

作者: QianQianPeng | 来源:发表于2021-09-23 15:09 被阅读0次
        private func getFilePath() -> String {
            NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/"
        }
    
    public func changeFileName(_ newName: String,_ oldName: String) -> Bool {t
        let oldFilePath = getFilePath() + oldName
        let newPath = getFilePath() + newName
        let url = URL(fileURLWithPath: oldFilePath)
        var modifyStatus = false
        do {
            try FileManager.default.moveItem(at: url, to: URL(fileURLWithPath: newPath))
            modifyStatus = true
        } catch  {
            modifyStatus = false
        }
        return modifyStatus
    }

    相关文章

      网友评论

          本文标题:iOS 修改文件名称

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