0

我创建了一个 Windows 服务并将运行日志写入“/Log/”文件夹,我在哪里可以找到这个文件夹。

它不在我安装该服务的程序文件中。

我根据文件夹中的 Kyle 分析器创建了文件夹以转储 Windows 服务日志文件

创建文件夹的代码:

        _logFolderPath = "/Logs/";
        string fileNameAndPath = Path.Combine(_logFolderPath, fileName);
        var fileInfo = new FileInfo(fileNameAndPath + ".txt");
        //Check if txt file exits
        if (!fileInfo.Exists)
        {
            //check if its directory exits, if not create
            if (!fileInfo.Directory.Exists) fileInfo.Directory.Create();
            //create file
            FileStream fs = fileInfo.Create();
            fs.Close();
        }
4

0 回答 0