|
|
|
@ -4,13 +4,13 @@ public static class Core
|
|
|
|
{
|
|
|
|
{
|
|
|
|
private static string ReturnAndCreateConfigDir()
|
|
|
|
private static string ReturnAndCreateConfigDir()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData, Environment.SpecialFolderOption.Create) + "/PortHelper/";
|
|
|
|
string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData, Environment.SpecialFolderOption.Create) + "/GlennPortHelper/";
|
|
|
|
Directory.CreateDirectory(path);
|
|
|
|
Directory.CreateDirectory(path);
|
|
|
|
return path;
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// The full path to the PortHelper's place in Configuration Application Data.
|
|
|
|
/// The full path to the tools's place in Configuration Application Data.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
public static readonly string ConfigDir = ReturnAndCreateConfigDir();
|
|
|
|
public static readonly string ConfigDir = ReturnAndCreateConfigDir();
|
|
|
|
|
|
|
|
|
|
|
|
|