Merge pull request #8772 from JosJuice/create-backup-dir

Core: Call CreateFullPath before using Backup directory
This commit is contained in:
JMC47
2020-04-28 12:35:05 -04:00
committed by GitHub

View File

@ -39,6 +39,8 @@ static bool CopyBackupFile(const std::string& path_from, const std::string& path
if (!File::Exists(path_from))
return false;
File::CreateFullPath(path_to);
return File::Copy(path_from, path_to);
}