diff options
| author | 2018-08-16 17:05:30 -0400 | |
|---|---|---|
| committer | 2018-08-23 11:52:44 -0400 | |
| commit | bf33f80fae1e97f48a62e16b1e965d7994ac4c45 (patch) | |
| tree | c5bf8e27201430b922fb793e6293f78346a97bdf /src/core/file_sys/vfs.cpp | |
| parent | filesystem: Add CreateFactories methods to fs (diff) | |
| download | yuzu-bf33f80fae1e97f48a62e16b1e965d7994ac4c45.tar.gz yuzu-bf33f80fae1e97f48a62e16b1e965d7994ac4c45.tar.xz yuzu-bf33f80fae1e97f48a62e16b1e965d7994ac4c45.zip | |
vfs: Add GetOrCreateDirectoryRelative method
Diffstat (limited to 'src/core/file_sys/vfs.cpp')
| -rw-r--r-- | src/core/file_sys/vfs.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/file_sys/vfs.cpp b/src/core/file_sys/vfs.cpp index b915b4c11..146c839f4 100644 --- a/src/core/file_sys/vfs.cpp +++ b/src/core/file_sys/vfs.cpp | |||
| @@ -462,4 +462,11 @@ bool VfsRawCopy(VirtualFile src, VirtualFile dest) { | |||
| 462 | std::vector<u8> data = src->ReadAllBytes(); | 462 | std::vector<u8> data = src->ReadAllBytes(); |
| 463 | return dest->WriteBytes(data, 0) == data.size(); | 463 | return dest->WriteBytes(data, 0) == data.size(); |
| 464 | } | 464 | } |
| 465 | |||
| 466 | VirtualDir GetOrCreateDirectoryRelative(const VirtualDir& rel, std::string_view path) { | ||
| 467 | const auto res = rel->GetDirectoryRelative(path); | ||
| 468 | if (res == nullptr) | ||
| 469 | return rel->CreateDirectoryRelative(path); | ||
| 470 | return res; | ||
| 471 | } | ||
| 465 | } // namespace FileSys | 472 | } // namespace FileSys |