summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-11/+11
2018-08-23vfs: Add GetOrCreateDirectoryRelative methodZach Hilman1-0/+7
2018-08-21vfs: Replace mode.h include with forward declarations where applicableLioncash1-0/+1
Avoids the need to rebuild these source files if the mode header changes.
2018-08-12vfs: Use sanitized paths within MoveFile() and MoveDirectory()Lioncash1-10/+10
Previously these were being unused (or partially unused). While we're at it, use better naming to make it visibly obvious which variant of the path is being used.
2018-08-09vfs: Add VfsFilesystem interface and default implementationZach Hilman1-0/+148
2018-08-01Make XCI comply to review and style guidelinesZach Hilman1-4/+3
2018-08-01Remove files that are not usedZach Hilman1-0/+21
2018-07-28RomFS ExtractionZach Hilman1-0/+23
2018-07-22file_util, vfs: Use std::string_view where applicableLioncash1-38/+73
Avoids unnecessary construction of std::string instances where applicable.
2018-07-21vfs: Make WriteBytes() overload taking a std::vector pass the std::vector by const referenceLioncash1-1/+1
Given the data is intended to be directly written, there's no need to take the std::vector by value and copy the data.
2018-07-19vfs: Deduplicate accumulation code in VfsDirectory's GetSize()Lioncash1-6/+6
We can just use a generic lambda to avoid writing the same thing twice.
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-0/+238
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
2018-07-08Revert "Virtual Filesystem (#597)"bunnei1-187/+0
This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
2018-07-06Virtual Filesystem (#597)Zach Hilman1-0/+187
* 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