43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
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 defaultText;
|
|
public addBackupWizard()
|
|
{
|
|
InitializeComponent();
|
|
populateDropdown();
|
|
defaultText = introTextBox.Text; //stores it so we can append to the end at runtime
|
|
}
|
|
|
|
private void directoryBrowseButton_Click(object sender, EventArgs e)
|
|
{
|
|
FolderBrowserDialog folderBrowserDialog = new FolderBrowserDialog();
|
|
if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
|
|
{
|
|
folderPath.Text = folderBrowserDialog.SelectedPath;
|
|
}
|
|
folderBrowserDialog.Dispose(); //memory management
|
|
}
|
|
|
|
private void populateDropdown()
|
|
{
|
|
DriveInfo[] drives = USBTools.getConnectedDrives();
|
|
foreach (DriveInfo drive in drives)
|
|
{
|
|
drivesDropdown.Items.Add(drive.Name + " " + drive.VolumeLabel);
|
|
}
|
|
}
|
|
}
|
|
}
|