예제 #1
0
        public static void LoadAllFIles()
        {
            string folder         = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
            string specificFolder = Path.Combine(folder, "LothosGen");

            if (!Directory.Exists(specificFolder)) //Checks OR Makes Directory Folder
            {
                try
                {
                    Directory.CreateDirectory(specificFolder);
                }
                catch (Exception e) { MessageBox.Show(e.Message); }
            }
            MessageBox.Show("a");
            MainBrowser.LoadStartPage();
            RightBrowser.LoadUpdatesPage();
        }