- Simulation 기초

This commit is contained in:
2017-02-11 13:25:42 +09:00
parent af9ef4aa60
commit 8f6937c112
16 changed files with 65920 additions and 80 deletions

15
Util.cs
View File

@@ -133,5 +133,20 @@ namespace AutoSellerNS
return strPath;
}
public static string GetSimulationPath()
{
string strPath = "";
if(IsDebugging())
strPath = Path.GetDirectoryName(Path.GetDirectoryName(Directory.GetCurrentDirectory()));
else
strPath = Directory.GetCurrentDirectory();
strPath += "/simulation";
if(Directory.Exists(strPath) == false)
Directory.CreateDirectory(strPath);
return strPath;
}
}
}