You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr/Code/AppPaths.cs

15 lines
462 B

using System;
using System.IO;
namespace Recyclarr.Code
{
public static class AppPaths
{
public static string DataDirectory { get; } =
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "recyclarr");
public static string SettingsDirectory { get; } = Path.Combine(DataDirectory, "settings");
public static string DefaultRepoPath { get; } = Path.Combine(DataDirectory, "repo");
}
}