├── .github └── workflows │ └── main.yml ├── .gitignore ├── AlignedStream.cs ├── FatxDevice.cs ├── FatxFileSystem.cs ├── GdfxFileSystem.cs ├── Program.cs ├── README.md ├── ReadOnlyFileSystem.cs ├── StfsFileSystem.cs ├── StfsStructs.cs ├── Utility.cs ├── XboxStructs.cs ├── dist ├── _INSTALL.bat ├── _UNINSTALL.bat ├── winfsp-msil.dll └── winfsp-msil.xml ├── eeprom.bin ├── xbox-winfsp.csproj └── xbox-winfsp.sln /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/.gitignore -------------------------------------------------------------------------------- /AlignedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/AlignedStream.cs -------------------------------------------------------------------------------- /FatxDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/FatxDevice.cs -------------------------------------------------------------------------------- /FatxFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/FatxFileSystem.cs -------------------------------------------------------------------------------- /GdfxFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/GdfxFileSystem.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/README.md -------------------------------------------------------------------------------- /ReadOnlyFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/ReadOnlyFileSystem.cs -------------------------------------------------------------------------------- /StfsFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/StfsFileSystem.cs -------------------------------------------------------------------------------- /StfsStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/StfsStructs.cs -------------------------------------------------------------------------------- /Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/Utility.cs -------------------------------------------------------------------------------- /XboxStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/XboxStructs.cs -------------------------------------------------------------------------------- /dist/_INSTALL.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | %~dp0xbox-winfsp.exe -s 4 | 5 | pause . -------------------------------------------------------------------------------- /dist/_UNINSTALL.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | %~dp0xbox-winfsp.exe -r 4 | 5 | pause . -------------------------------------------------------------------------------- /dist/winfsp-msil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/dist/winfsp-msil.dll -------------------------------------------------------------------------------- /dist/winfsp-msil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/dist/winfsp-msil.xml -------------------------------------------------------------------------------- /eeprom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/eeprom.bin -------------------------------------------------------------------------------- /xbox-winfsp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/xbox-winfsp.csproj -------------------------------------------------------------------------------- /xbox-winfsp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoose/xbox-winfsp/HEAD/xbox-winfsp.sln --------------------------------------------------------------------------------