我有一个成功将文件移动到共享App组的功能,但我删除该文件的功能似乎不起作用。如果我打印出fullpath2变量,它似乎是正确的位置,但文件未被删除,并且不会返回错误。
这是我的功能:
func getSharedFilePath(appGroup:String,sharedFilename:String)->URL? {
if let directoryPath = FileManager().containerURL(forSecurityApplicationGroupIdentifier: appGroup) {
return directoryPath.appendingPathComponent(sharedFilename)
} else {
return nil
}
}
public func deleteFromSharedFile(sharedFilename: String, fileExtension: String)->String {
let sharedFilename = "\(sharedFilename).\(fileExtension)"
guard let url = getSharedFilePath(appGroup:applicationGroup,sharedFilename:sharedFilename) else {
return("Error getting shared file path")
}
// read file from file system to data variable
let fileManager = FileManager.default
do {
try fileManager.removeItem(atPath: (url.path))
return("File Removed")
}
catch let error as NSError {
return("File Remove Failed - \(error)")
}
}
答案 0 :(得分:3)
以下是我的表情符号应用的一些代码段。
效果很好。
func removeImage(itemName: String, fileExtension: String) {
let fileName:String = itemName + "." + fileExtension
let fileManager = FileManager.default
guard let groupURL = fileManager.containerURL(forSecurityApplicationGroupIdentifier: "group.io.XXXXXX.XXXX") else {
return
}
let storagePathUrl = groupURL.appendingPathComponent("image/" + fileName, isDirectory: false)
let storagePath = storagePathUrl.path
do {
if fileManager.fileExists(atPath: storagePath) {
try fileManager.removeItem(atPath: storagePath)
}
} catch let error as NSError {
print(error.debugDescription)
}
}
“image”只是app group子文件夹的名称。
如果要直接在根文件夹中保存文件,可以将其删除。
希望它对你有所帮助。