作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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/
我正在尝试使用 Swift 在 iOS 中使用 FileManager 获取 FileAttributesKey。当我尝试这样做时,我收到以下错误” Error Domain=NSCocoaError
我是一名优秀的程序员,十分优秀!