├── .gitignore ├── LICENSE ├── README.md ├── XISOExtractorGUI.sln └── XISOExtractorGUI ├── ETACalculator.cs ├── EndianConverter.cs ├── EventArg.cs ├── ExtractionResults.Designer.cs ├── ExtractionResults.cs ├── ExtractionResults.resx ├── FTPSettings.Designer.cs ├── FTPSettings.cs ├── FTPSettings.resx ├── FolderSelectDialog.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── SettingsManager.Designer.cs ├── SettingsManager.cs ├── SettingsManager.resx ├── SfvGenerator.cs ├── System.Net.FtpClient.dll ├── Utils.cs ├── XGD.ico ├── XISOExtractor.cs ├── XISOExtractorGUI.csproj ├── XISOFTP.cs ├── XISOStatus.cs ├── file.png └── folder.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/README.md -------------------------------------------------------------------------------- /XISOExtractorGUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI.sln -------------------------------------------------------------------------------- /XISOExtractorGUI/ETACalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/ETACalculator.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/EndianConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/EndianConverter.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/EventArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/EventArg.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/ExtractionResults.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/ExtractionResults.Designer.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/ExtractionResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/ExtractionResults.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/ExtractionResults.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/ExtractionResults.resx -------------------------------------------------------------------------------- /XISOExtractorGUI/FTPSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/FTPSettings.Designer.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/FTPSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/FTPSettings.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/FTPSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/FTPSettings.resx -------------------------------------------------------------------------------- /XISOExtractorGUI/FolderSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/FolderSelectDialog.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/MainForm.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/MainForm.resx -------------------------------------------------------------------------------- /XISOExtractorGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/Program.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /XISOExtractorGUI/SettingsManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/SettingsManager.Designer.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/SettingsManager.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/SettingsManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/SettingsManager.resx -------------------------------------------------------------------------------- /XISOExtractorGUI/SfvGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/SfvGenerator.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/System.Net.FtpClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/System.Net.FtpClient.dll -------------------------------------------------------------------------------- /XISOExtractorGUI/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/Utils.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/XGD.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/XGD.ico -------------------------------------------------------------------------------- /XISOExtractorGUI/XISOExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/XISOExtractor.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/XISOExtractorGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/XISOExtractorGUI.csproj -------------------------------------------------------------------------------- /XISOExtractorGUI/XISOFTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/XISOFTP.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/XISOStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/XISOStatus.cs -------------------------------------------------------------------------------- /XISOExtractorGUI/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/file.png -------------------------------------------------------------------------------- /XISOExtractorGUI/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizzy/XISOExtractorGUI/HEAD/XISOExtractorGUI/folder.png --------------------------------------------------------------------------------