Fixed: getTemporaryDirectory() under Linux
This commit is contained in:
parent
ad5a89cc16
commit
d03bf15a8d
1 changed files with 9 additions and 3 deletions
|
@ -1727,10 +1727,16 @@ std::string CFileContainer::getTemporaryDirectory()
|
||||||
static std::string path;
|
static std::string path;
|
||||||
if (path.empty())
|
if (path.empty())
|
||||||
{
|
{
|
||||||
std::string tempDir = getenv("TEMP");
|
const char *temp = getenv("TEMP");
|
||||||
|
const char *tmp = getenv("TMP");
|
||||||
|
|
||||||
if (tempDir.empty())
|
std::string tempDir;
|
||||||
tempDir = getenv("TMP");
|
|
||||||
|
if (temp)
|
||||||
|
tempDir = temp;
|
||||||
|
|
||||||
|
if (tempDir.empty() && tmp)
|
||||||
|
tempDir = tmp;
|
||||||
|
|
||||||
#ifdef NL_OS_UNIX
|
#ifdef NL_OS_UNIX
|
||||||
if (tempDir.empty())
|
if (tempDir.empty())
|
||||||
|
|
Loading…
Reference in a new issue