Azure.Storage.Files.DataLake.Models.PathSystemProperties
The system properties for a path.
namespace Azure.Storage.Files.DataLake.Models
{
public class PathSystemProperties
{
public DateTimeOffset? CreationTime { get; }
public DateTimeOffset? LastModifiedTime { get; }
public ETag ETag { get; }
public long? ContentLength { get; }
public bool? IsDirectory { get; }
public bool? IsServerEncrypted { get; }
public string EncryptionKeySha256 { get; }
public DateTimeOffset? ExpiresOn { get; }
public string EncryptionScope { get; }
public string EncryptionContext { get; }
public string Owner { get; }
public string Group { get; }
public PathPermissions Permissions { get; }
}
}