using OpenHarbor.Storage.Abstractions; namespace OpenHarbor.Storage.Physical; public class PhysicalDirectoryInfo(string path) : IDirectoryInfo { public string Path { get; } = path; public bool IsDirectory => true; }