我创建了一个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();
}