在Windows服务中为“运行日志”创建的“/ Log /”文件夹在哪里

时间:2012-09-11 07:57:21

标签: c# windows-services

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

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

我按照Folder to dump windows service log files中的Kyle anser创建了该文件夹。

创建文件夹的代码:

        _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();
        }

0 个答案:

没有答案