#swift #document
Вопрос:
У меня возникла проблема при попытке записать текстовый файл в подкаталог моей папки «Документы».
Мой код выглядит следующим образом:
@objc func makeFileButtonTapped() {
print(#function)
let tempName = "test"
var tempRecurrance: String = ""
switch recurrentInt {
case 0:
tempRecurrance = "Never"
case 1:
tempRecurrance = "Sometimes"
case 2:
tempRecurrance = "Often"
default:
tempRecurrance = "Unknown"
}
fileName = tempName ".txt"
let tempTitle: String = "nTitle: " titleString "nn"
let tempDate: String = "Date: " dateString "nn"
let tempRecurring: String = "Recurs: " tempRecurrance "nnnn"
myDocument = ""
myDocument.append(tempTitle)
myDocument.append(tempDate)
myDocument.append(tempRecurring)
saveToDirectory()
}
func saveToDirectory(){
print(#function)
let fileManager = FileManager.default
// Create subdirectory
do {
let directoryURL = fileManager.urls(for: .documentDirectory, in: .userDomainMask).first!
let myAppDirectoryURL = directoryURL.appendingPathComponent("MySubDirectory")
if !fileManager.fileExists(atPath: myAppDirectoryURL.path) {
try fileManager.createDirectory(at: myAppDirectoryURL, withIntermediateDirectories: true, attributes: nil)
print("New directory created.")
//print("dictionary already exists.")
}
// Create document
let documentURL = myAppDirectoryURL.appendingPathComponent (fileName)
try myDocument.write(to: documentURL, atomically: false, encoding: .utf8)
print("documentURL =", documentURL.path)
} catch {
print(error)
}
}
Я получаю консольное сообщение о том, что каталог {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}
.
Комментарии:
1. Это macOS или iOS? Где в вашем коде сообщается об ошибке?
Ответ №1:
Удалите проверку, если файл уже существует, if !fileManager.fileExists(atPath: myAppDirectoryURL.path)
так createDirectory
как вызов не приведет к ошибке, если каталог уже существует, когда вы withIntermediateDirectories
установили значение tot true.
Вы использовали некоторые свойства, которые не входили в вопрос, поэтому вот моя тестовая версия вашей функции для полноты
func saveToDirectory(_ fileName: String, text: String) {
let fileManager = FileManager.default
do {
let directoryURL = fileManager.urls(for: .documentDirectory, in: .userDomainMask).first!
let myAppDirectoryURL = directoryURL.appendingPathComponent("MySubDirectory")
try fileManager.createDirectory(at: myAppDirectoryURL, withIntermediateDirectories: true, attributes: nil)
let documentURL = myAppDirectoryURL.appendingPathComponent (fileName)
try text.write(to: documentURL, atomically: true, encoding: .utf8)
} catch {
print(error)
}
}
Комментарии:
1. Большое спасибо, Йоаким. Это сработало идеально.