diff options
author | Mat M <mathew1800@gmail.com> | 2018-08-25 05:47:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-25 05:47:46 +0200 |
commit | 6426b0f5514d6a7c5cc369368947eceb380bfc85 (patch) | |
tree | b7acdc39a4344570a6f2c098c30ad20114bf84db /src/core/file_sys/vfs.h | |
parent | Merge pull request #1065 from DarkLordZach/window-title (diff) | |
parent | file_sys/crypto: Fix missing/unnecessary includes (diff) | |
download | yuzu-6426b0f5514d6a7c5cc369368947eceb380bfc85.tar yuzu-6426b0f5514d6a7c5cc369368947eceb380bfc85.tar.gz yuzu-6426b0f5514d6a7c5cc369368947eceb380bfc85.tar.bz2 yuzu-6426b0f5514d6a7c5cc369368947eceb380bfc85.tar.lz yuzu-6426b0f5514d6a7c5cc369368947eceb380bfc85.tar.xz yuzu-6426b0f5514d6a7c5cc369368947eceb380bfc85.tar.zst yuzu-6426b0f5514d6a7c5cc369368947eceb380bfc85.zip |
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 // directory of src/dest. bool VfsRawCopy(VirtualFile src, VirtualFile dest); +// Checks if the directory at path relative to rel exists. If it does, returns that. If it does not +// it attempts to create it and returns the new dir or nullptr on failure. +VirtualDir GetOrCreateDirectoryRelative(const VirtualDir& rel, std::string_view path); + } // namespace FileSys |