mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Common/FileUtil: Revert behavior of CreateFullPath().
This was accidentally changed in 7e6436db34
.
This commit is contained in:
@ -143,8 +143,10 @@ u64 GetSize(FILE* f);
|
||||
// Returns true if successful, or path already exists.
|
||||
bool CreateDir(const std::string& filename);
|
||||
|
||||
// Creates the full path of fullPath returns true on success
|
||||
bool CreateFullPath(const std::string& fullPath);
|
||||
// Creates the full path to the file given in fullPath.
|
||||
// That is, for path '/a/b/c.bin', creates folders '/a' and '/a/b'.
|
||||
// Returns true if creation is successful or if the path already exists.
|
||||
bool CreateFullPath(std::string_view fullPath);
|
||||
|
||||
enum class IfAbsentBehavior
|
||||
{
|
||||
|
Reference in New Issue
Block a user