1
Fork 0

added code for listing drives and getting directory

This commit is contained in:
Jake Howard 2014-11-15 13:44:37 +00:00
parent 31edb50c9b
commit 7696536221

View file

@ -7,14 +7,36 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace Saviour_Backup_System
{
public partial class addBackupWizard : Form
{
private string folderPath = "";
public addBackupWizard()
{
InitializeComponent();
populateDropdown();
}
private void directoryBrowseButton_Click(object sender, EventArgs e)
{
FolderBrowserDialog folderBrowserDialog = new FolderBrowserDialog();
if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
{
folderPath = folderBrowserDialog.SelectedPath;
}
folderBrowserDialog.Dispose(); //memory management
}
private void populateDropdown()
{
DriveInfo[] drives = USBTools.getConnectedDrives();
foreach (DriveInfo drive in drives)
{
drivesDropdown.Items.Add(drive.VolumeLabel);
}
}
}
}