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.h | |
| 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.h')
| -rw-r--r-- | src/core/file_sys/vfs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h index 22db08b59..5142a3e86 100644 --- a/src/core/file_sys/vfs.h +++ b/src/core/file_sys/vfs.h | |||
| @@ -318,4 +318,8 @@ bool DeepEquals(const VirtualFile& file1, const VirtualFile& file2, size_t block | |||
| 318 | // directory of src/dest. | 318 | // directory of src/dest. |
| 319 | bool VfsRawCopy(VirtualFile src, VirtualFile dest); | 319 | bool VfsRawCopy(VirtualFile src, VirtualFile dest); |
| 320 | 320 | ||
| 321 | // Checks if the directory at path relative to rel exists. If it does, returns that. If it does not | ||
| 322 | // it attempts to create it and returns the new dir or nullptr on failure. | ||
| 323 | VirtualDir GetOrCreateDirectoryRelative(const VirtualDir& rel, std::string_view path); | ||
| 324 | |||
| 321 | } // namespace FileSys | 325 | } // namespace FileSys |