1

updated access modifiers

This commit is contained in:
Jake Howard 2014-07-31 15:32:08 +01:00
parent 3167738dae
commit 2f0e303bff
3 changed files with 10 additions and 10 deletions

View File

@ -9,9 +9,9 @@ using System.Data.SqlClient;
namespace Saviour_Backup_System namespace Saviour_Backup_System
{ {
public class USBTools class USBTools
{ {
public static void initDriveScan(){ internal static void initDriveScan(){
Timer scanTimer = new Timer(); Timer scanTimer = new Timer();
scanTimer.Elapsed += new ElapsedEventHandler(driveScanTick); scanTimer.Elapsed += new ElapsedEventHandler(driveScanTick);
scanTimer.Interval = 1000 * 7; //seconds to check for new drives scanTimer.Interval = 1000 * 7; //seconds to check for new drives
@ -33,7 +33,7 @@ namespace Saviour_Backup_System
//check if record exists in database //check if record exists in database
} }
} }
public static DriveInfo[] getConnectedDrives() internal static DriveInfo[] getConnectedDrives()
{ {
List<DriveInfo> drivesList = new List<DriveInfo>(); List<DriveInfo> drivesList = new List<DriveInfo>();
DriveInfo[] drives = DriveInfo.GetDrives(); DriveInfo[] drives = DriveInfo.GetDrives();
@ -48,21 +48,21 @@ namespace Saviour_Backup_System
} }
public static void safelyEjectDrive(string driveChar) internal static void safelyEjectDrive(string driveChar)
{ {
driveChar = driveChar.Remove(driveChar.Length - 1); driveChar = driveChar.Remove(driveChar.Length - 1);
RemoveDriveTools.RemoveDrive(driveChar); RemoveDriveTools.RemoveDrive(driveChar);
} }
public static void displayDriveDetails(string driveName) internal static void displayDriveDetails(string driveName)
{ {
DriveInfo selectedDrive; DriveInfo selectedDrive;
foreach (DriveInfo drive in getConnectedDrives()) { if (drive.Name == driveName) { selectedDrive = drive; break; } } foreach (DriveInfo drive in getConnectedDrives()) { if (drive.Name == driveName) { selectedDrive = drive; break; } }
} }
public static string getDriveType(DriveInfo selectedDrive) internal static string getDriveType(DriveInfo selectedDrive)
{ {
string driveTypeDecoded = "Error decoding drive details!"; string driveTypeDecoded = "Error decoding drive details!";
switch (selectedDrive.DriveType) switch (selectedDrive.DriveType)
@ -93,7 +93,7 @@ namespace Saviour_Backup_System
} }
public static int countDrives() internal static int countDrives()
{ {
int numberofDrives = 0; int numberofDrives = 0;
foreach (DriveInfo drive in getConnectedDrives()) { numberofDrives++; } foreach (DriveInfo drive in getConnectedDrives()) { numberofDrives++; }
@ -101,7 +101,7 @@ namespace Saviour_Backup_System
} }
public static int spacePercentage(DriveInfo drive) internal static int spacePercentage(DriveInfo drive)
{ {
double capacity = (double)(drive.TotalSize / (1024 * 1024)); double capacity = (double)(drive.TotalSize / (1024 * 1024));
double free = (double)(drive.AvailableFreeSpace / (1024 * 1024)); double free = (double)(drive.AvailableFreeSpace / (1024 * 1024));

View File

@ -24,7 +24,7 @@ namespace Saviour_Backup_System
} }
public static void clearBackups(string tableName) internal static void clearBackups(string tableName)
{ {
executeSQL("DELETE FROM Rules;"); executeSQL("DELETE FROM Rules;");
} }

View File

@ -12,7 +12,7 @@ namespace Saviour_Backup_System
{ {
class setup class setup
{ {
public static void initProgram(){ internal static void initProgram(){
string databaseName = databaseTools.databaseName; string databaseName = databaseTools.databaseName;
if (File.Exists(databaseName)) { return; } // If the program has been run before, then the database will exist, so use that to test it. if (File.Exists(databaseName)) { return; } // If the program has been run before, then the database will exist, so use that to test it.