mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-16 03:42:30 +00:00
Co-authored-by: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
25 lines
718 B
C#
25 lines
718 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace DiscordChatExporter.Gui;
|
|
|
|
public partial class StartOptions
|
|
{
|
|
public required string SettingsPath { get; init; }
|
|
}
|
|
|
|
public partial class StartOptions
|
|
{
|
|
public static StartOptions Current { get; } =
|
|
new()
|
|
{
|
|
SettingsPath =
|
|
Environment.GetEnvironmentVariable("DISCORDCHATEXPORTER_SETTINGS_PATH") is { } path
|
|
&& !string.IsNullOrWhiteSpace(path)
|
|
? Path.EndsInDirectorySeparator(path) || Directory.Exists(path)
|
|
? Path.Combine(path, "Settings.dat")
|
|
: path
|
|
: Path.Combine(AppContext.BaseDirectory, "Settings.dat"),
|
|
};
|
|
}
|