Swift。如何将文本行附加到 file.txt 的顶部?
Swift. How to append text line to top of file.txt?
我正在实现一个小型记录器,我正在其中写入一个 TXT 文件。
我希望最后一个事件位于文件的顶部,但我无法让它工作。网上的例子都是用"fileHandle.seekToEndOfFile()"写在文件末尾。
这是我的:
private static func writeToFile(text: String) {
guard let path = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first else { return }
guard let writePath = NSURL(fileURLWithPath: path).appendingPathComponent(Logger.folderName) else { return }
let fileManager = FileManager.default
try? fileManager.createDirectory(atPath: writePath.path, withIntermediateDirectories: true)
let file = writePath.appendingPathComponent(Logger.fileName)
if !fileManager.fileExists(atPath: file.path) {
do {
try "".write(toFile: file.path, atomically: true, encoding: String.Encoding.utf8)
} catch _ {
}
}
let msgWithLine = text + "\n"
do {
let fileHandle = try FileHandle(forWritingTo: file)
//fileHandle.seekToEndOfFile()
fileHandle.write(msgWithLine.data(using: .utf8)!)
fileHandle.closeFile()
} catch {
print("Error writing to file \(error)")
}
}
使用这段代码,我写在第一行,但是,我总是重写第一行的内容。
如何将其更改为第一个内容到下面一行,然后在第一行写入新内容?
谢谢!!
这应该没问题:
首先,获取旧数据,然后追加新数据并写入所有内容。
let msgWithLine = text + "\n"
do {
let fileHandle = try FileHandle(forWritingTo: file)
fileHandle.seek(toFileOffset: 0)
let oldData = try String(contentsOf: file, encoding: .utf8).data(using: .utf8)!
var data = msgWithLine.data(using: .utf8)!
data.append(oldData)
fileHandle.write(data)
fileHandle.closeFile()
} catch {
print("Error writing to file \(error)")
}
我没有测试代码可能有一些问题。
另一种可能的解决方案是在文件末尾写入并在读取时反转文件。
我正在实现一个小型记录器,我正在其中写入一个 TXT 文件。 我希望最后一个事件位于文件的顶部,但我无法让它工作。网上的例子都是用"fileHandle.seekToEndOfFile()"写在文件末尾。
这是我的:
private static func writeToFile(text: String) {
guard let path = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first else { return }
guard let writePath = NSURL(fileURLWithPath: path).appendingPathComponent(Logger.folderName) else { return }
let fileManager = FileManager.default
try? fileManager.createDirectory(atPath: writePath.path, withIntermediateDirectories: true)
let file = writePath.appendingPathComponent(Logger.fileName)
if !fileManager.fileExists(atPath: file.path) {
do {
try "".write(toFile: file.path, atomically: true, encoding: String.Encoding.utf8)
} catch _ {
}
}
let msgWithLine = text + "\n"
do {
let fileHandle = try FileHandle(forWritingTo: file)
//fileHandle.seekToEndOfFile()
fileHandle.write(msgWithLine.data(using: .utf8)!)
fileHandle.closeFile()
} catch {
print("Error writing to file \(error)")
}
}
使用这段代码,我写在第一行,但是,我总是重写第一行的内容。
如何将其更改为第一个内容到下面一行,然后在第一行写入新内容?
谢谢!!
这应该没问题: 首先,获取旧数据,然后追加新数据并写入所有内容。
let msgWithLine = text + "\n"
do {
let fileHandle = try FileHandle(forWritingTo: file)
fileHandle.seek(toFileOffset: 0)
let oldData = try String(contentsOf: file, encoding: .utf8).data(using: .utf8)!
var data = msgWithLine.data(using: .utf8)!
data.append(oldData)
fileHandle.write(data)
fileHandle.closeFile()
} catch {
print("Error writing to file \(error)")
}
我没有测试代码可能有一些问题。
另一种可能的解决方案是在文件末尾写入并在读取时反转文件。