Пример #1
0
        private bool RemoveLauncher()
        {
            //todo: change location
            string path = RetroFE.GetAbsolutePath() + "/Launchers/" + SelectedLauncher.Name + ".conf";

            if (File.Exists(path))
            {
                File.Delete(path);
            }

            LauncherCollection.Remove(SelectedLauncher);

            return(true);
        }