mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
more reliable fallback for default directory
This commit is contained in:
parent
a2700d6dc0
commit
c0cc115545
@ -213,16 +213,21 @@ namespace Observatory
|
|||||||
{
|
{
|
||||||
//throw new DirectoryNotFoundException($"Directory '{path}' does not exist.");
|
//throw new DirectoryNotFoundException($"Directory '{path}' does not exist.");
|
||||||
//Don't throw, not handling that right now. Just set to current folder.
|
//Don't throw, not handling that right now. Just set to current folder.
|
||||||
logDirectory = new DirectoryInfo(".");
|
logDirectory = new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||||
{
|
{
|
||||||
logDirectory = new DirectoryInfo(GetSavedGamesPath() + @"\Frontier Developments\Elite Dangerous");
|
string defaultJournalPath = GetSavedGamesPath() + @"\Frontier Developments\Elite Dangerous";
|
||||||
|
|
||||||
|
logDirectory =
|
||||||
|
Directory.Exists(defaultJournalPath)
|
||||||
|
? new DirectoryInfo(defaultJournalPath)
|
||||||
|
: new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory);
|
||||||
}
|
}
|
||||||
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
|
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
|
||||||
{
|
{
|
||||||
logDirectory = new DirectoryInfo(".");
|
logDirectory = new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user