├── .gitattributes ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── FATX ├── Analyzers │ ├── FileCarver.cs │ ├── MetadataAnalyzer.cs │ └── Signatures │ │ ├── BlankSignature.cs │ │ ├── FileSignature.cs │ │ ├── LiveSignature.cs │ │ ├── PDBSignature.cs │ │ ├── PESignature.cs │ │ ├── XBESignature.cs │ │ └── XEXSignature.cs ├── DriveReader.cs ├── EndianReader.cs ├── FATX.csproj └── FileSystem │ ├── Constants.cs │ ├── DirectoryEntry.cs │ ├── FileAttribute.cs │ ├── Platform.cs │ ├── TimeStamp.cs │ └── Volume.cs ├── FATXTools.sln ├── FATXTools ├── Analyzers │ └── IntegrityAnalyzer.cs ├── App.config ├── Controls │ ├── CarverResults.Designer.cs │ ├── CarverResults.cs │ ├── CarverResults.resx │ ├── ClusterViewer.Designer.cs │ ├── ClusterViewer.cs │ ├── ClusterViewer.resx │ ├── DataMap │ │ ├── CellHoveredEventArgs.cs │ │ ├── DataMap.cs │ │ └── DataMapCell.cs │ ├── DriveView.Designer.cs │ ├── DriveView.cs │ ├── DriveView.resx │ ├── FileCarverResults.cs │ ├── FileExplorer.Designer.cs │ ├── FileExplorer.cs │ ├── FileExplorer.resx │ ├── MetadataAnalyzerResults.cs │ ├── PartitionSelectedEventArgs.cs │ ├── PartitionView.Designer.cs │ ├── PartitionView.cs │ ├── PartitionView.resx │ ├── RecoveryResults.Designer.cs │ ├── RecoveryResults.cs │ └── RecoveryResults.resx ├── Database │ ├── AddPartitionEventArgs.cs │ ├── CarvedFile.cs │ ├── DatabaseFile.cs │ ├── Deserializer.cs │ ├── DriveDatabase.cs │ ├── FileDatabase.cs │ ├── PartitionDatabase.cs │ ├── RemovePartitionEventArgs.cs │ └── Serializer.cs ├── Dialogs │ ├── ClusterChainDialog.Designer.cs │ ├── ClusterChainDialog.cs │ ├── ClusterChainDialog.resx │ ├── DeviceSelectionDialog.Designer.cs │ ├── DeviceSelectionDialog.cs │ ├── DeviceSelectionDialog.resx │ ├── FileInfoDialog.Designer.cs │ ├── FileInfoDialog.cs │ ├── FileInfoDialog.resx │ ├── NewPartitionDialog.Designer.cs │ ├── NewPartitionDialog.cs │ ├── NewPartitionDialog.resx │ ├── PartitionManagerDialog.Designer.cs │ ├── PartitionManagerDialog.cs │ ├── PartitionManagerDialog.resx │ ├── ProgressDialog.Designer.cs │ ├── ProgressDialog.cs │ ├── ProgressDialog.resx │ ├── SettingsDialog.Designer.cs │ ├── SettingsDialog.cs │ └── SettingsDialog.resx ├── DiskTypes │ ├── CompressedImage.cs │ ├── PhysicalDisk.cs │ └── RawImage.cs ├── FATXTools.csproj ├── Forms │ ├── MainWindow.Designer.cs │ ├── MainWindow.cs │ └── MainWindow.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Utilities │ ├── TaskRunner.cs │ ├── Utility.cs │ └── WinApi.cs └── appicon.ico ├── LICENSE ├── ReadMe.md └── Screenshots ├── FATXTools_2020-10-26_11-03-21.png ├── FATXTools_2020-10-26_11-04-26.png ├── FATXTools_2020-10-26_11-07-02.png └── FATXTools_2020-10-26_11-09-07.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/.gitignore -------------------------------------------------------------------------------- /FATX/Analyzers/FileCarver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/FileCarver.cs -------------------------------------------------------------------------------- /FATX/Analyzers/MetadataAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/MetadataAnalyzer.cs -------------------------------------------------------------------------------- /FATX/Analyzers/Signatures/BlankSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/Signatures/BlankSignature.cs -------------------------------------------------------------------------------- /FATX/Analyzers/Signatures/FileSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/Signatures/FileSignature.cs -------------------------------------------------------------------------------- /FATX/Analyzers/Signatures/LiveSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/Signatures/LiveSignature.cs -------------------------------------------------------------------------------- /FATX/Analyzers/Signatures/PDBSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/Signatures/PDBSignature.cs -------------------------------------------------------------------------------- /FATX/Analyzers/Signatures/PESignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/Signatures/PESignature.cs -------------------------------------------------------------------------------- /FATX/Analyzers/Signatures/XBESignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/Signatures/XBESignature.cs -------------------------------------------------------------------------------- /FATX/Analyzers/Signatures/XEXSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/Analyzers/Signatures/XEXSignature.cs -------------------------------------------------------------------------------- /FATX/DriveReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/DriveReader.cs -------------------------------------------------------------------------------- /FATX/EndianReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/EndianReader.cs -------------------------------------------------------------------------------- /FATX/FATX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/FATX.csproj -------------------------------------------------------------------------------- /FATX/FileSystem/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/FileSystem/Constants.cs -------------------------------------------------------------------------------- /FATX/FileSystem/DirectoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/FileSystem/DirectoryEntry.cs -------------------------------------------------------------------------------- /FATX/FileSystem/FileAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/FileSystem/FileAttribute.cs -------------------------------------------------------------------------------- /FATX/FileSystem/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/FileSystem/Platform.cs -------------------------------------------------------------------------------- /FATX/FileSystem/TimeStamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/FileSystem/TimeStamp.cs -------------------------------------------------------------------------------- /FATX/FileSystem/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATX/FileSystem/Volume.cs -------------------------------------------------------------------------------- /FATXTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools.sln -------------------------------------------------------------------------------- /FATXTools/Analyzers/IntegrityAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Analyzers/IntegrityAnalyzer.cs -------------------------------------------------------------------------------- /FATXTools/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/App.config -------------------------------------------------------------------------------- /FATXTools/Controls/CarverResults.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/CarverResults.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/CarverResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/CarverResults.cs -------------------------------------------------------------------------------- /FATXTools/Controls/CarverResults.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/CarverResults.resx -------------------------------------------------------------------------------- /FATXTools/Controls/ClusterViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/ClusterViewer.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/ClusterViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/ClusterViewer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/ClusterViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/ClusterViewer.resx -------------------------------------------------------------------------------- /FATXTools/Controls/DataMap/CellHoveredEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/DataMap/CellHoveredEventArgs.cs -------------------------------------------------------------------------------- /FATXTools/Controls/DataMap/DataMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/DataMap/DataMap.cs -------------------------------------------------------------------------------- /FATXTools/Controls/DataMap/DataMapCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/DataMap/DataMapCell.cs -------------------------------------------------------------------------------- /FATXTools/Controls/DriveView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/DriveView.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/DriveView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/DriveView.cs -------------------------------------------------------------------------------- /FATXTools/Controls/DriveView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/DriveView.resx -------------------------------------------------------------------------------- /FATXTools/Controls/FileCarverResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/FileCarverResults.cs -------------------------------------------------------------------------------- /FATXTools/Controls/FileExplorer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/FileExplorer.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/FileExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/FileExplorer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/FileExplorer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/FileExplorer.resx -------------------------------------------------------------------------------- /FATXTools/Controls/MetadataAnalyzerResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/MetadataAnalyzerResults.cs -------------------------------------------------------------------------------- /FATXTools/Controls/PartitionSelectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/PartitionSelectedEventArgs.cs -------------------------------------------------------------------------------- /FATXTools/Controls/PartitionView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/PartitionView.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/PartitionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/PartitionView.cs -------------------------------------------------------------------------------- /FATXTools/Controls/PartitionView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/PartitionView.resx -------------------------------------------------------------------------------- /FATXTools/Controls/RecoveryResults.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/RecoveryResults.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Controls/RecoveryResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/RecoveryResults.cs -------------------------------------------------------------------------------- /FATXTools/Controls/RecoveryResults.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Controls/RecoveryResults.resx -------------------------------------------------------------------------------- /FATXTools/Database/AddPartitionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/AddPartitionEventArgs.cs -------------------------------------------------------------------------------- /FATXTools/Database/CarvedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/CarvedFile.cs -------------------------------------------------------------------------------- /FATXTools/Database/DatabaseFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/DatabaseFile.cs -------------------------------------------------------------------------------- /FATXTools/Database/Deserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/Deserializer.cs -------------------------------------------------------------------------------- /FATXTools/Database/DriveDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/DriveDatabase.cs -------------------------------------------------------------------------------- /FATXTools/Database/FileDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/FileDatabase.cs -------------------------------------------------------------------------------- /FATXTools/Database/PartitionDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/PartitionDatabase.cs -------------------------------------------------------------------------------- /FATXTools/Database/RemovePartitionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/RemovePartitionEventArgs.cs -------------------------------------------------------------------------------- /FATXTools/Database/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Database/Serializer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/ClusterChainDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/ClusterChainDialog.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/ClusterChainDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/ClusterChainDialog.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/ClusterChainDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/ClusterChainDialog.resx -------------------------------------------------------------------------------- /FATXTools/Dialogs/DeviceSelectionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/DeviceSelectionDialog.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/DeviceSelectionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/DeviceSelectionDialog.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/DeviceSelectionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/DeviceSelectionDialog.resx -------------------------------------------------------------------------------- /FATXTools/Dialogs/FileInfoDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/FileInfoDialog.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/FileInfoDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/FileInfoDialog.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/FileInfoDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/FileInfoDialog.resx -------------------------------------------------------------------------------- /FATXTools/Dialogs/NewPartitionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/NewPartitionDialog.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/NewPartitionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/NewPartitionDialog.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/NewPartitionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/NewPartitionDialog.resx -------------------------------------------------------------------------------- /FATXTools/Dialogs/PartitionManagerDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/PartitionManagerDialog.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/PartitionManagerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/PartitionManagerDialog.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/PartitionManagerDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/PartitionManagerDialog.resx -------------------------------------------------------------------------------- /FATXTools/Dialogs/ProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/ProgressDialog.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/ProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/ProgressDialog.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/ProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/ProgressDialog.resx -------------------------------------------------------------------------------- /FATXTools/Dialogs/SettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/SettingsDialog.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/SettingsDialog.cs -------------------------------------------------------------------------------- /FATXTools/Dialogs/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Dialogs/SettingsDialog.resx -------------------------------------------------------------------------------- /FATXTools/DiskTypes/CompressedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/DiskTypes/CompressedImage.cs -------------------------------------------------------------------------------- /FATXTools/DiskTypes/PhysicalDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/DiskTypes/PhysicalDisk.cs -------------------------------------------------------------------------------- /FATXTools/DiskTypes/RawImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/DiskTypes/RawImage.cs -------------------------------------------------------------------------------- /FATXTools/FATXTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/FATXTools.csproj -------------------------------------------------------------------------------- /FATXTools/Forms/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Forms/MainWindow.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Forms/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Forms/MainWindow.cs -------------------------------------------------------------------------------- /FATXTools/Forms/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Forms/MainWindow.resx -------------------------------------------------------------------------------- /FATXTools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Program.cs -------------------------------------------------------------------------------- /FATXTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FATXTools/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Properties/Resources.resx -------------------------------------------------------------------------------- /FATXTools/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FATXTools/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Properties/Settings.settings -------------------------------------------------------------------------------- /FATXTools/Utilities/TaskRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Utilities/TaskRunner.cs -------------------------------------------------------------------------------- /FATXTools/Utilities/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Utilities/Utility.cs -------------------------------------------------------------------------------- /FATXTools/Utilities/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/Utilities/WinApi.cs -------------------------------------------------------------------------------- /FATXTools/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/FATXTools/appicon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Screenshots/FATXTools_2020-10-26_11-03-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/Screenshots/FATXTools_2020-10-26_11-03-21.png -------------------------------------------------------------------------------- /Screenshots/FATXTools_2020-10-26_11-04-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/Screenshots/FATXTools_2020-10-26_11-04-26.png -------------------------------------------------------------------------------- /Screenshots/FATXTools_2020-10-26_11-07-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/Screenshots/FATXTools_2020-10-26_11-07-02.png -------------------------------------------------------------------------------- /Screenshots/FATXTools_2020-10-26_11-09-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/FATXTools/HEAD/Screenshots/FATXTools_2020-10-26_11-09-07.png --------------------------------------------------------------------------------