1
Fork 0

started work on startup backup system

This commit is contained in:
Jake Howard 2014-12-04 12:47:25 +00:00
parent eb5dca120f
commit d743c9fbdb
1 changed files with 21 additions and 1 deletions

View File

@ -26,6 +26,8 @@ namespace Saviour_Backup_System
SS = new splashScreen(); //displays the splash screen
SS.description.Text = "From Setup...";
databaseTools.init();
startupBackups();
//run any initialising code here!
SS.Close();
@ -35,7 +37,25 @@ namespace Saviour_Backup_System
}
private static void startupBackups() {
return;
string[] IDs = databaseTools.getAutomaticBackups();
DriveInfo[] drives = USBTools.getConnectedDrives();
List<string> driveIDs = new List<string>();
List<string> drivesToBackup = new List<string>();
foreach (DriveInfo drive in drives)
{
driveIDs.Add(USBTools.calculateDriveID(drive));
}
foreach (string id in IDs)
{
if (driveIDs.Contains(id))
{
drivesToBackup.Add(id);
}
}
foreach (string id in drivesToBackup)
{
}
}
public static void closeProgram() {