This commit is contained in:
chi
2025-05-26 17:19:36 +09:00
parent 8d0f0f8c8f
commit d6e7c118fb
40 changed files with 1550 additions and 3133 deletions

View File

@@ -9,6 +9,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using System.IO.Compression;
using AR;
namespace Project.Dialog
{
@@ -195,7 +196,7 @@ namespace Project.Dialog
if(System.IO.File.Exists(file))
{
//이 파일을 _patch 폴더에 압축해제한다.
var dir_path = new System.IO.DirectoryInfo(System.IO.Path.Combine(Util.CurrentPath,"_patch"));
var dir_path = new System.IO.DirectoryInfo(System.IO.Path.Combine(UTIL.CurrentPath ,"_patch"));
if (dir_path.Exists == true)
{
try
@@ -203,7 +204,7 @@ namespace Project.Dialog
dir_path.Delete(true);
} catch (Exception ex)
{
Util.MsgE(ex.Message);
UTIL.MsgE(ex.Message);
return;
}
}
@@ -224,7 +225,7 @@ namespace Project.Dialog
}
else
{
Util.MsgE("패치파일이 없습니다\n" + file);
UTIL.MsgE("패치파일이 없습니다\n" + file);
return;
}