IFileAndDirectoryCreateCommonOptions interface
Properties
creation |
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. By default, the value will be set as now. |
file |
The file system attributes to be set on the file or directory. |
file |
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. Note that only one of filePermission or filePermissionKey can be specified. And if both are not specified, inherit will be set to filePermission as default value by client library. |
file |
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. |
last |
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. By default, the value will be set as now. |
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. By default, the value will be set as now.
creationTime?: Date | TimeNowType
Property Value
Date | TimeNowType
fileAttributes
The file system attributes to be set on the file or directory.
fileAttributes?: FileSystemAttributes
Property Value
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. Note that only one of filePermission or filePermissionKey can be specified. And if both are not specified, inherit will be set to filePermission as default value by client library.
filePermission?: string | FilePermissionInheritType
Property Value
string | FilePermissionInheritType
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?: undefined | string
Property Value
undefined | string
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. By default, the value will be set as now.
lastWriteTime?: Date | TimeNowType
Property Value
Date | TimeNowType
Azure SDK for JavaScript