SMBProperties Class
SMB related properties to get/set for for file/directory
:ivar str or NTFSAttributes ntfs_attributes: The file system attributes for files and directories. If not set, indicates preservation of existing values. Here is an example for when the var type is str: 'Temporary|Archive'
- Inheritance
-
builtins.objectSMBProperties
Constructor
SMBProperties(ntfs_attributes=None, creation_time=None, last_write_time=None, permission_key=None)
Parameters
Name | Description |
---|---|
ntfs_attributes
|
Default value: None
|
creation_time
|
Default value: None
|
last_write_time
|
Default value: None
|
permission_key
|
Default value: None
|
Variables
Name | Description |
---|---|
creation_time
|
When the File or Directory was created. If it is a string type, time should have 7 decimal digits, eg. '2019-07-07T02:52:46.5540162Z' |
last_write_time
|
When the File or Directory was last modified. eg. '2019-07-07T02:52:46.5540162Z' If it is a string type, time should have 7 decimal digits, eg. '2019-07-07T02:52:46.5540162Z' |
permission_key
|
The file's File Permission Key |
change_time
|
When the File was last changed. This is what will be returned by service. Users don't need to specify. |
file_id
|
The Id of this directory. This is what will be returned by service. Users don't need to specify. |
parent_id
|
The Id of this directory's parent. This is what will be returned by service. Users don't need to specify. |
Azure SDK for Python