我有以下Swift 3代码,它创建一个文件路径字符串并检查该文件是否存在于iPad上,但它返回false。我使用IExplorer应用程序在文件夹中看到该文件,因此我必须创建错误的文件路径。如何创建正确的文件路径来读取屏幕截图中显示的文件。
屏幕截图中的Staff Mobility应用程序是我的应用程序,其中运行以下代码。
var logPath = FileManager.default.temporaryDirectory.appendingPathComponent("log",
isDirectory: true).appendingPathComponent("AwpLog4jInfo").appendingPathExtension("log").absoluteString
//This "if" equals false. Why?
if fileManager.fileExists(asPath: logPath)