├── .gitattributes ├── .gitignore ├── AccTimeBenchmark.sln ├── AccTimeBenchmark ├── Core │ ├── DiskOperation.cs │ ├── FileOperation.cs │ └── GetUdiskList.cs ├── Forms │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Update.cs │ ├── Update.designer.cs │ └── Update.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── grey.png │ └── orange.png ├── Scenario.cs ├── Utility │ ├── CSVReader.cs │ ├── IniFile.cs │ ├── SWOnline.cs │ └── SysInfo.cs ├── WTGBench.csproj ├── app.config ├── app.manifest └── speed_128px_1151078_easyicon.net.ico ├── README.md ├── h5_result.PNG └── iTuner ├── Properties ├── AssemblyInfo.cs └── PublishProfiles │ └── FolderProfile.pubxml ├── UsbDisk.cs ├── UsbDiskCollection.cs ├── UsbManager.cs ├── UsbStateChange.cs ├── UsbStateChangedEventArgs.cs ├── WmiExtensions.cs └── iTuner.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/.gitignore -------------------------------------------------------------------------------- /AccTimeBenchmark.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark.sln -------------------------------------------------------------------------------- /AccTimeBenchmark/Core/DiskOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Core/DiskOperation.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Core/FileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Core/FileOperation.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Core/GetUdiskList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Core/GetUdiskList.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Forms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Forms/Form1.Designer.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Forms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Forms/Form1.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Forms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Forms/Form1.resx -------------------------------------------------------------------------------- /AccTimeBenchmark/Forms/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Forms/Update.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Forms/Update.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Forms/Update.designer.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Forms/Update.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Forms/Update.resx -------------------------------------------------------------------------------- /AccTimeBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Program.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /AccTimeBenchmark/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Properties/Resources.resx -------------------------------------------------------------------------------- /AccTimeBenchmark/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Properties/Settings.settings -------------------------------------------------------------------------------- /AccTimeBenchmark/Resources/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Resources/grey.png -------------------------------------------------------------------------------- /AccTimeBenchmark/Resources/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Resources/orange.png -------------------------------------------------------------------------------- /AccTimeBenchmark/Scenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Scenario.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Utility/CSVReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Utility/CSVReader.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Utility/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Utility/IniFile.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Utility/SWOnline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Utility/SWOnline.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/Utility/SysInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/Utility/SysInfo.cs -------------------------------------------------------------------------------- /AccTimeBenchmark/WTGBench.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/WTGBench.csproj -------------------------------------------------------------------------------- /AccTimeBenchmark/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/app.config -------------------------------------------------------------------------------- /AccTimeBenchmark/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/app.manifest -------------------------------------------------------------------------------- /AccTimeBenchmark/speed_128px_1151078_easyicon.net.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/AccTimeBenchmark/speed_128px_1151078_easyicon.net.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/README.md -------------------------------------------------------------------------------- /h5_result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/h5_result.PNG -------------------------------------------------------------------------------- /iTuner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /iTuner/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /iTuner/UsbDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/UsbDisk.cs -------------------------------------------------------------------------------- /iTuner/UsbDiskCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/UsbDiskCollection.cs -------------------------------------------------------------------------------- /iTuner/UsbManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/UsbManager.cs -------------------------------------------------------------------------------- /iTuner/UsbStateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/UsbStateChange.cs -------------------------------------------------------------------------------- /iTuner/UsbStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/UsbStateChangedEventArgs.cs -------------------------------------------------------------------------------- /iTuner/WmiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/WmiExtensions.cs -------------------------------------------------------------------------------- /iTuner/iTuner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkc3g4/WTGBench/HEAD/iTuner/iTuner.csproj --------------------------------------------------------------------------------