2024-11-11 11:37:02 -05:00
|
|
|
|
using OpenHarbor.Storage.Abstractions;
|
2020-03-13 11:18:25 -04:00
|
|
|
|
|
2024-11-10 16:57:24 -05: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;
|
|
|
|
|
}
|
|
|
|
|
}
|