Example #1
0
        // private static Dictionary<ProjectChoice, string> ProjectFolderPath
        //    = new Dictionary<ProjectChoice, string>()
        //{
        //    { ProjectChoice.Aritiafel, @"C:\Programs\Standard\Aritiafel" }
        //}

        public static void BackupGameSave(string rootFolder, string subFolder, string backupDrive = DefaultBackupDrive)
        {
            Residence rs = new Residence($"{backupDrive}:\\GameSave");

            rs.BackupGameData(rootFolder, subFolder);
        }