Fix file naming template on unix systems

This commit is contained in:
= 2022-12-29 14:12:46 -07:00
parent 83fb2cd1d0
commit 6901b8be35
2 changed files with 21 additions and 3 deletions

View file

@ -20,7 +20,7 @@ namespace FileManager
public string Path { get; init; }
public override string ToString() => Path;
private static readonly PlatformID PlatformID = Environment.OSVersion.Platform;
internal static readonly PlatformID PlatformID = Environment.OSVersion.Platform;
public static implicit operator LongPath(string path)