dotnet-storage/PoweredSoft.Storage.S3/S3NotExistingDirectoryInfo.cs
2020-03-13 11:18:25 -04:00

15 lines
323 B
C#

using PoweredSoft.Storage.Core;
namespace PoweredSoft.Storage.S3
{
public class S3NotExistingDirectoryInfo : IDirectoryInfo
{
public S3NotExistingDirectoryInfo(string path)
{
Path = path;
}
public string Path { get; }
public bool IsDirectory => true;
}
}