gpt4 book ai didi

ios - 无法打开文件,因为获取 FileAttributesKey 时没有这样的文件 - Swift

转载 作者:行者123 更新时间:2023-12-04 09:17:15 25 4
gpt4 key购买 nike

我正在尝试使用 Swift 在 iOS 中使用 FileManager 获取 FileAttributesKey。当我尝试这样做时,我收到以下错误”

Error Domain=NSCocoaErrorDomain Code=260 "The file “Personal%20Narrative%20Essay.txt” couldn’t be opened because there is no such file." UserInfo={NSFilePath=file:///private/var/mobile/Library/Mobile%20Documents/com~apple~TextEdit/Documents/Personal%20Narrative%20Essay.txt, NSUnderlyingError=0x283e720a0 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
它说该文件不存在,但我知道它确实存在,因为它出现在 UIDocumentPicker 中,并且我能够使用 try! Data(contentsOf: URL) 获取文件的内容.
我获取文件属性的代码是:
func processURL(url: URL) -> Bool {
let newPath = url.absoluteString
print(newPath)
do {
let attributes = try FileManager.default.attributesOfItem(atPath: newPath)
let fileSize = attributes[FileAttributeKey.size]
print("Calculated File Size: \(fileSize!)")
return true
}
catch {
print(error)
self.isShowingSpinner = false
self.isShowingURLErrorAlert = true
return false
}
return true
}
我只需要能够获得我现在使用上述函数所做的文件大小。我不明白我是否做错了什么。在此先感谢您的帮助。

最佳答案

我可以用一个简单的 Playground 来重现您的问题,我在其中放置了一个名为“hello.text”的资源。
结果如下:

let filePath = Bundle.main.path(forResource: "hello", ofType: "txt")!
// Prints as /var/folders/blah-blah-blah/hello.txt
let fileURL = Bundle.main.url(forResource: "hello", withExtension: "txt")!
// Prints as file:///var/folders/blah-blah-blah/hello.txt
问题在于 file://前缀特定于文件的 URL并且不希望用于 String 类型的路径参数.
try FileManager.default.attributesOfItem(atPath: fileURL.absoluteString) // ❌
try FileManager.default.attributesOfItem(atPath: fileURL.path) // ✅

关于ios - 无法打开文件,因为获取 FileAttributesKey 时没有这样的文件 - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63163756/

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