gpt4 book ai didi

ios - 快速删除图像文件,抛出文件不存在

转载 作者:行者123 更新时间:2023-11-30 12:42:45 25 4
gpt4 key购买 nike

 let filename = getDocumentsDirectory().appendingPathComponent(upload.fileName)
print("deleting")
let fileNameToDelete = upload.fileName
var filePath = ""
// Fine documents directory on device
let dirs : [String] = NSSearchPathForDirectoriesInDomains(FileManager.SearchPathDirectory.documentDirectory, FileManager.SearchPathDomainMask.allDomainsMask, true)
if dirs.count > 0 {
let dir = dirs[0] //documents directory
filePath = dir.appendingFormat("/" + fileNameToDelete)
print("Local path = \(filePath)")
} else {
print("Could not find local directory to store file")
return
}
print(filename)
print("deleting111111")
do {
let fileManager = FileManager.default
// Check if file exists
print("filePath")
print(filePath)
print("filePath")
if fileManager.fileExists(atPath: filePath) {
// Delete file
try fileManager.removeItem(atPath: filePath)
} else {
print("File does not exist")
}
}
catch let error as NSError {
print("An error took place: \(error)")
}}

这会打印在下面。为什么删除不起作用?为什么上面的函数向我抛出文件存在但它不存在

deleting
Local path = /var/mobile/Containers/Data/Application/C763B3ED-3371-47AB-8F61-4F086D01E430/Documents/profile-FFCEBEA9-2F8D-49E2-9A09-2BF87BD0B542--A9636AF4-350D-4D72-A4BD-E4F2B183F4BB.png
file:///var/mobile/Containers/Data/Application/C763B3ED-3371-47AB-8F61-4F086D01E430/Documents/profile-FFCEBEA9-2F8D-49E2-9A09-2BF87BD0B542--A9636AF4-350D-4D72-A4BD-E4F2B183F4BB.png
deleting111111
filePath
/var/mobile/Containers/Data/Application/C763B3ED-3371-47AB-8F61-4F086D01E430/Documents/profile-FFCEBEA9-2F8D-49E2-9A09-2BF87BD0B542--A9636AF4-350D-4D72-A4BD-E4F2B183F4BB.png
filePath
File does not exist

最佳答案

如果您通过写入生成的文件名来创建文件

filename = getDocumentsDirectory().appendingPathComponent(nameOfImage+"‌​.PNG")

...那么绝对重要是,当需要删除文件时,您以完全相同的方式生成文件名。那不是你正在做的事情。

事实上,在您显示的代码中,您确实生成了一个名为 filename 的变量,其代码看起来类似:

let filename = getDocumentsDirectory().appendingPathComponent(upload.fileName)

...但是你永远不会使用 文件名做任何事情!因此你不断地伪装自己。您创建文件名,打印文件名,但不使用文件名作为要删除的路径。您使用其他一些变量,filePath,以不同的方式获得。

关于ios - 快速删除图像文件,抛出文件不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42043121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com