当前位置:  开发笔记 > IOS > 正文

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

如何解决《在Swift中将NSLog重定向到File无法正常工作》经验,为你挑选了1个好方法。

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

如何将NSLog转换为文件

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> Martin R..:

a的absoluteString属性URL产生URL字符串,例如

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

这不适合作为参数freopen().要将文件路径作为字符串,请path改为使用:

let logPath = dir.appendingPathComponent(file).path

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

let logFileURL = dir.appendingPathComponent(file)
logFileURL.withUnsafeFileSystemRepresentation {
    _ = freopen($0, "a+", stderr)
}

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有