ViewList 배포 포함

This commit is contained in:
2025-03-18 11:24:22 +09:00
parent 63897c889e
commit 1ee9e948d9
3 changed files with 20 additions and 7 deletions

View File

@@ -409,8 +409,11 @@ namespace DDUtilityApp.MESDOWNLOADER
}
else
{
string filename = Util.GetFileMerge(downloads);
System.Diagnostics.Process.Start(filename);
string fileName = Util.GetFileMerge(downloads);
string extension = System.IO.Path.GetExtension(fileName);
if (string.Compare(extension, ".Log", true) != 0)
System.IO.File.Move(fileName, fileName += ".log");
System.Diagnostics.Process.Start(fileName);
}
}
}