ContainerDirectory Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a directory in the container file system.
public sealed class ContainerDirectory : Aspire.Hosting.ApplicationModel.ContainerFileSystemItem
type ContainerDirectory = class
inherit ContainerFileSystemItem
Public NotInheritable Class ContainerDirectory
Inherits ContainerFileSystemItem
- Inheritance
Constructors
ContainerDirectory() |
Properties
Entries |
The contents of the directory to create in the container. Will create specified ContainerFile and ContainerDirectory entries in the directory. |
Group |
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. (Inherited from ContainerFileSystemItem) |
Mode |
The permissions of the file or directory. If set to 0, the permissions will be inherited from the parent directory or defaults. (Inherited from ContainerFileSystemItem) |
Name |
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. (Inherited from ContainerFileSystemItem) |
Owner |
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. (Inherited from ContainerFileSystemItem) |