Azure.Storage.Files.DataLake.Models.PathItem
Path
namespace Azure.Storage.Files.DataLake.Models
{
public class PathItem
{
public string Name { get; }
public bool? IsDirectory { get; }
public DateTimeOffset LastModified { get; }
public ETag ETag { get; }
public long? ContentLength { get; }
public string Owner { get; }
public string Group { get; }
public string Permissions { get; }
public DateTimeOffset? CreatedOn { get; }
public DateTimeOffset? ExpiresOn { get; }
public string EncryptionScope { get; }
public string EncryptionContext { get; }
}
}