我需要从iOS应用程序验证iPhone中是否存在特定文件。如果文件存在,那么我需要从该文件读取数据。我在下面共享我的代码:
let documentsURL = try! FileManager().url(for: .documentDirectory,
in: .userDomainMask,
appropriateFor: nil,
create: true)
let filePathURL = documentsURL.appendingPathComponent("filename")
let fileExists = FileManager().fileExists(atPath: filePathURL.path)
if fileExists {
print("file is present")
} else {
print("file is not present")
}
我正在获取结果,因为“文件不存在”。但是文件存在于我的iPhone中(我将文件保存在iPhone的页面中)。我犯了什么错误?