summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/disk_filesystem.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-239/+0
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
2018-07-14FileSys: Append the requested path to the filesystem base path in DeleteFile.Subv1-2/+4
We were trying to delete things in the current directory instead of the actual filesystem directory. This may fix some savedata issues in some games.
2018-07-08Revert "Virtual Filesystem (#597)"bunnei1-0/+237
This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
2018-07-06Virtual Filesystem (#597)Zach Hilman1-237/+0
* Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename
2018-07-03Rename logging macro back to LOG_*James Rowe1-10/+10
2018-04-25file-sys: Move logging macros over to the new fmt-capable onesLioncash1-11/+10
2018-04-24Service/FS: implement IFileSystem::RenameFilemailwl1-3/+9
2018-04-20disk_filesystem: Remove redundant initializer in Disk_Directory's constructorLioncash1-1/+1
2018-04-15fsp_srv: Implement DeleteFile.bunnei1-4/+8
- Used by Binding of Isaac.
2018-03-31fsp_srv: Implement GetSize and SetSize.bunnei1-2/+3
2018-03-23FS: Move the file open mode calculation to a separate function.Subv1-7/+14
2018-03-21FS: Implemented IFileSystem::CreateDirectory.Subv1-3/+10
2018-03-20FS: Implement DiskFileSystem's OpenDirectory interface.Subv1-2/+11
2018-03-20FS: Implement DiskFileSystem::GetEntryType for existing files/directories.Subv1-2/+4
2018-03-20FS: Updated the Directory Entry structure to match the Switch.Subv1-6/+42
2018-03-20FS: Support the file Append open mode.Subv1-2/+22
2018-03-04FS: Use the correct error code when trying to open files that don't exist.Subv1-4/+3
2018-03-02Filesystem: Added a SaveData Factory and associated Disk_FileSystem.Subv1-0/+147