1
Fork 0

Added Class for group of functions that control USB scanning and file checking

This commit is contained in:
Jake Howard 2014-06-25 15:23:04 +01:00
parent 0922ed9e49
commit a96cb76355
2 changed files with 18 additions and 0 deletions

View File

@ -45,6 +45,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="USBTools.cs" />
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace Saviour_Backup_System
{
public class USBTools
{
public void updateDriveList()
{
//Get code for scanning drive (from other project) here
}
}
}