mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Create Ryzom profile folder if not already created and return 1 if unable to create it
This commit is contained in:
parent
935cb89290
commit
31c3e663a8
1 changed files with 10 additions and 5 deletions
|
@ -203,13 +203,18 @@ int main(int argc, char **argv)
|
|||
{
|
||||
std::string currentPath = CPath::getApplicationDirectory("Ryzom");
|
||||
|
||||
// create parent directory
|
||||
if (!CFile::isExists(currentPath)) CFile::createDirectory(currentPath);
|
||||
|
||||
// append profile ID to directory
|
||||
if (Args.haveArg("p"))
|
||||
{
|
||||
currentPath = NLMISC::CPath::standardizePath(currentPath) + Args.getArg("p").front();
|
||||
|
||||
if (!CFile::isExists(currentPath)) CFile::createDirectory(currentPath);
|
||||
}
|
||||
|
||||
CPath::setCurrentPath(currentPath);
|
||||
if (!CPath::setCurrentPath(currentPath)) return 1;
|
||||
}
|
||||
|
||||
#ifdef TEST_CRASH_COUNTER
|
||||
|
|
Loading…
Reference in a new issue