15 lines
329 B
C#
15 lines
329 B
C#
using OpenHarbor.Storage.Abstractions;
|
|
|
|
namespace OpenHarbor.Storage.S3
|
|
{
|
|
public class S3NotExistingDirectoryInfo : IDirectoryInfo
|
|
{
|
|
public S3NotExistingDirectoryInfo(string path)
|
|
{
|
|
Path = path;
|
|
}
|
|
|
|
public string Path { get; }
|
|
public bool IsDirectory => true;
|
|
}
|
|
} |