简体   繁体   中英

Swift writing log file in yosemite

I have a program that writes string to a file. It works perfectly in macos mojave but not in yosemite.

Using Xcode 11 and Swift 5

The code is (Log.swift)

import Foundation
open class Log {

open var maxFileSize: UInt64 = 102400
open var maxFileCount = 365

///The directory in which the log files will be written
open var directory = Log.defaultDirectory() {
    didSet {
        directory = NSString(string: directory).expandingTildeInPath

        let fileManager = FileManager.default
        if !fileManager.fileExists(atPath: directory) {
            do {
                try fileManager.createDirectory(atPath: directory, withIntermediateDirectories: true, attributes: nil)
            } catch {
                NSLog("Couldn't create directory at \(directory)")
            }
        }
    }
}

open var currentPath: String {
    return "\(directory)/\(logName(0))"
}

///The name of the log files
open var name = "logfile"

///Whether or not logging also prints to the console
open var printToConsole = true

///logging singleton
open class var logger: Log {

    struct Static {
        static let instance: Log = Log()
    }
    return Static.instance
}
//the date formatter
var dateFormatter: DateFormatter {
    let formatter = DateFormatter()
    formatter.timeStyle = .medium
    formatter.dateStyle = .medium
    return formatter
}

///write content to the current log file.
open func write(_ text: String) {
    let path = currentPath
    let fileManager = FileManager.default
    if !fileManager.fileExists(atPath: path) {
        do {
            try "".write(toFile: path, atomically: true, encoding: String.Encoding.utf8)
        } catch _ {
        }
    }
    if let fileHandle = FileHandle(forWritingAtPath: path) {
        let dateStr = dateFormatter.string(from: Date())
        let writeText = "[\(dateStr)]: \(text)\n"
        fileHandle.seekToEndOfFile()
        fileHandle.write(writeText.data(using: String.Encoding.utf8)!)
        fileHandle.closeFile()
        }
}

///Recursive method call to rename log files
func rename(_ index: Int) {
    let fileManager = FileManager.default
    let path = "\(directory)/\(logName(index))"
    let newPath = "\(directory)/\(logName(index+1))"
    if fileManager.fileExists(atPath: newPath) {
        rename(index+1)
    }
    do {
        try fileManager.moveItem(atPath: path, toPath: newPath)
    } catch _ {
    }
}

///gets the log name
func logName(_ num :Int) -> String {
    return "\(name)-\(num).log"
}

///get the default log directory
class func defaultDirectory() -> String {
    var path = ""
    let fileManager = FileManager.default
        let urls = fileManager.urls(for: .libraryDirectory, in: .userDomainMask)
        //let urls = fileManager.urls(for: .applicationSupportDirectory, in: .userDomainMask)
        if let url = urls.last {
            path = "\(url.path)/TestingLog/Logs"
        }
    if !fileManager.fileExists(atPath: path) && path != ""  {
        do {
            try fileManager.createDirectory(atPath: path, withIntermediateDirectories: false, attributes: nil)
        } catch _ {
        }
    }
    return path
}

}

///Writes content to the current log file
public func logw(_ text: String) {
    Log.logger.write(text)
}

In another swift file I use logw("test1") to print test1 in a file in applicationsupport directory.

Whats wrong that makes it not write in yosemite?

I need it to not delete the file or the text inside the file and make it keep appending it when writing the log.

i can see from the code above in your

open func write(_ text: String) {
    let path = currentPath
    let fileManager = FileManager.default
    if !fileManager.fileExists(atPath: path) {
        do {
            try "".write(toFile: path, atomically: true, encoding: String.Encoding.utf8)
        } catch _ {
        }
    }
}

method the string value passed to log is not used anywhere. . Can you please clarify this

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM