提交 f28dfe1d 编写于 作者: T tanghai

修复hotfix pdb文件目录找不到报错的bug

上级 b9071f9a
......@@ -29,6 +29,10 @@ namespace ETEditor
string newestPdb = "";
foreach (string pdbDir in pdbDirs)
{
if (!Directory.Exists(pdbDir))
{
continue;
}
string pdbPath = Path.Combine(pdbDir, HotfixPdb);
FileInfo fi = new FileInfo(pdbPath);
DateTime lastWriteTimeUtc = fi.LastWriteTimeUtc;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册