我创建了一个简单的控制台应用程序,如下所示
string fileName =@"Logs\Log" + DateTime.Now.ToString("yyyyMMdd_HHmmss") + ".xml";
try
{
var file = new FileInfo(fileName);
file.Directory.Create();
if (!file.Exists)
{
CreateNewLogFile(file);
}
}
从 Visual Studio 运行应用程序或从文件夹直接运行 exe 会生成日志文件。
但是通过任务计划程序运行没有生成文件。
为日志文件夹授予完全权限,但不知道为什么不通过调度程序生成文件?