Exemple #1
0
        public static string GetIpsaveFilePath()
        {
            string path = GameStorePath.GetStorePath();

            if (!Directory.Exists(path))
            {
                Directory.CreateDirectory(path);
            }
            return(Path.Combine(path, "lastip.txt"));
        }
Exemple #2
0
        private static string GetPasswordFilePath()
        {
            string path = GameStorePath.GetStorePath();

            if (!Directory.Exists(path))
            {
                Directory.CreateDirectory(path);
            }
            return(Path.Combine(path, "Password.txt"));
        }