Skip to content
DocsTry Aspire
DocsTry

ContainerFileSystemItem Properties

ClassProperties4 members
Represents a base class for file system entries in a container.
GroupSection titled Groupnullableint?
The GID of the group of the file or directory. If set to null, the GID will be inherited from the parent directory or defaults.
public int? Group { get; set; }
ModeSection titled ModeUnixFileMode
The permissions of the file or directory. If set to 0, the permissions will be inherited from the parent directory or defaults.
public UnixFileMode Mode { get; set; }
The name of the file or directory. Must be a simple file or folder name and not include any path separators (eg, / or \). To specify parent folders, use one or more ContainerDirectory entries.
public string Name { get; set; }
OwnerSection titled Ownernullableint?
The UID of the owner of the file or directory. If set to null, the UID will be inherited from the parent directory or defaults.
public int? Owner { get; set; }