mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
26 lines
816 B
C#
26 lines
816 B
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System.IO.Abstractions;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Infrastructure.Storage
|
|
{
|
|
public class WoxJsonStorage<T> : JsonStorage<T>
|
|
where T : new()
|
|
{
|
|
private static readonly IFileSystem FileSystem = new FileSystem();
|
|
private static readonly IPath Path = FileSystem.Path;
|
|
|
|
public WoxJsonStorage()
|
|
{
|
|
var directoryPath = Path.Combine(Constant.DataDirectory, DirectoryName);
|
|
Helper.ValidateDirectory(directoryPath);
|
|
|
|
var filename = typeof(T).Name;
|
|
FilePath = Path.Combine(directoryPath, $"{filename}{FileSuffix}");
|
|
}
|
|
}
|
|
}
|