在Swift中将NSLog重定向到文件无法正常工作

时间:2017-01-16 15:44:12

标签: ios swift swift3

我正在尝试将NSLog发送到在模拟器,IOS 10.2上运行的Swift 3中的文件,并且没有生成任何内容

How to NSLog into a file

func redirectConsoleLogToDocumentFolder() {
    let file = "file.txt"
    if let dir = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first {

        let logPath = dir.appendingPathComponent(file).absoluteString
        print("log:\(logPath)")
        freopen(logPath, "a+", stderr)
    }
    NSLog("print nslog")
}

输出

~/Library/Developer/CoreSimulator/Devices/A7B717-3ED8-493A-9778-C594AF9FF446/data/Containers/Data/Application/B0386-64BB-46EB-9BF2-65209FC748CD/Documents/file.txt

唯一的影响是输出不再打印到控制台。

我试过了

freopen(logPath.cString(using: .utf8), "a+", stderr)

以及其他各种组合

使用我收到的路径写入文件没有问题,所以

没有任何问题

我希望在路径中看到一个名为file.txt的文件,并且该文件包含" print nslog"。我尝试先创建文件但没有成功。

1 个答案:

答案 0 :(得分:9)

absoluteString的{​​{1}}属性会生成一个URL字符串,例如

    file:///path/to/file.txt

不适合作为URL的参数。 要将文件路径作为字符串,请改为使用freopen()

path

更好的是,使用专用方法将URL路径传递给系统调用:

let logPath = dir.appendingPathComponent(file).path