IDirectoryProperties interface

Extends

IFileAndDirectorySetPropertiesCommonOptions

Inherited Properties

creationTime

The Coordinated Universal Time (UTC) creation time property for the directory. A value of now may be used to indicate the time of the request. A value of preserve may be passed to keep an existing value unchanged. By default, the value will be set as preserve.

fileAttributes

The file system attributes to be set on the file or directory.

filePermission

The permission(security descriptor) to be set for the file or directory in the Security Descriptor Definition Language (SDDL). If specified, it must have an owner, group, and discretionary access control list (DACL). A value of inherit may be passed to inherit from the parent directory. A value of preserve may be passed to keep the value unchanged.

Note that only one of filePermission or filePermissionKey can be specified. And if both are not specified, preserve will be set to filePermission as default value by client library.

filePermissionKey

The key of the permission to be set for the file or directory. This can be created using the Create-Permission API.

Note that only one of filePermission or filePermissionKey can be specified.

lastWriteTime

The Coordinated Universal Time (UTC) last write property for the directory. A value of now may be used to indicate the time of the request. A value of preserve may be passed to keep an existing value unchanged. By default, the value will be set as preserve.

Inherited Property Details

creationTime

The Coordinated Universal Time (UTC) creation time property for the directory. A value of now may be used to indicate the time of the request. A value of preserve may be passed to keep an existing value unchanged. By default, the value will be set as preserve.

creationTime?: Date | "now" | "preserve"

Property Value

Date | "now" | "preserve"

Inherited From IFileAndDirectorySetPropertiesCommonOptions.creationTime

fileAttributes

The file system attributes to be set on the file or directory.

fileAttributes?: FileSystemAttributes | "preserve"

Property Value

FileSystemAttributes | "preserve"

Inherited From IFileAndDirectorySetPropertiesCommonOptions.fileAttributes

filePermission

The permission(security descriptor) to be set for the file or directory in the Security Descriptor Definition Language (SDDL). If specified, it must have an owner, group, and discretionary access control list (DACL). A value of inherit may be passed to inherit from the parent directory. A value of preserve may be passed to keep the value unchanged.

Note that only one of filePermission or filePermissionKey can be specified. And if both are not specified, preserve will be set to filePermission as default value by client library.

filePermission?: string

Property Value

string

Inherited From IFileAndDirectorySetPropertiesCommonOptions.filePermission

filePermissionKey

The key of the permission to be set for the file or directory. This can be created using the Create-Permission API.

Note that only one of filePermission or filePermissionKey can be specified.

filePermissionKey?: string

Property Value

string

Inherited From IFileAndDirectorySetPropertiesCommonOptions.filePermissionKey

lastWriteTime

The Coordinated Universal Time (UTC) last write property for the directory. A value of now may be used to indicate the time of the request. A value of preserve may be passed to keep an existing value unchanged. By default, the value will be set as preserve.

lastWriteTime?: Date | "now" | "preserve"

Property Value

Date | "now" | "preserve"

Inherited From IFileAndDirectorySetPropertiesCommonOptions.lastWriteTime