dotnet-storage/OpenHarbor.Storage.S3/S3NotExistingDirectoryInfo.cs

15 lines
329 B
C#
Raw Permalink Normal View History

using OpenHarbor.Storage.Abstractions;
2020-03-13 11:18:25 -04:00
namespace OpenHarbor.Storage.S3
2020-03-13 11:18:25 -04:00
{
public class S3NotExistingDirectoryInfo : IDirectoryInfo
{
public S3NotExistingDirectoryInfo(string path)
{
Path = path;
}
public string Path { get; }
public bool IsDirectory => true;
}
}