我是9年级的新学生,学习 敏捷 ,创建了一个学校项目。
我正在尝试创建一个目录,要将扫描的文件保存为pdf格式。
创建目录时,出现以下错误。
错误1:
无法在属性初始化程序中使用实例成员’filemgr’;属性初始化程序在“自我”可用之前运行。
错误2:
预期申报
码:
let filemgr = FileManager.default let dirPaths = filemgr.urls(for: .documentDirectory, in: .userDomainMask) let docsURL = dirPaths[0] let newDir = docsURL.appendingPathComponent("data").path do{ try filemgr.createDirectory(atPath: newDir,withIntermediateDirectories: true, attributes: nil) } catch { print("Error: \(error.localizedDescription)") }
请协助我解决这个问题。
谢谢。
请使用以下代码:
Swift 4.0 和 Swift 3.0
let DocumentDirectory = NSURL(fileURLWithPath: NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0]) let DirPath = DocumentDirectory.appendingPathComponent("FOLDER_NAME") do { try FileManager.default.createDirectory(atPath: DirPath!.path, withIntermediateDirectories: true, attributes: nil) } catch let error as NSError { print("Unable to create directory \(error.debugDescription)") } print("Dir Path = \(DirPath!)")