Update Program.cs

This commit is contained in:
qwqdanchun 2023-06-20 16:09:56 +08:00
parent 2376b54c2b
commit e4ff9d7074
1 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,11 @@ namespace Pillager
{
static void Main(string[] args)
{
string savepath = Path.GetTempPath();
string savepath = Path.Combine(Path.GetTempPath(), "Pillager");
if (!Directory.Exists(savepath))
{
Directory.CreateDirectory(savepath);
}
//IE
IE.Save(savepath);