..
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user