Added Class for group of functions that control USB scanning and file checking
This commit is contained in:
parent
0922ed9e49
commit
a96cb76355
2 changed files with 18 additions and 0 deletions
|
@ -45,6 +45,7 @@
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="USBTools.cs" />
|
||||||
<Compile Include="Form1.cs">
|
<Compile Include="Form1.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
|
17
Saviour Backup System/USBTools.cs
Normal file
17
Saviour Backup System/USBTools.cs
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue