Source code for azure.storage.fileshare.aio._directory_client_async

# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
# pylint: disable=invalid-overridden-method
import functools
import sys
import time
import warnings
from typing import ( # pylint: disable=unused-import
    Optional, Union, Any, Dict, TYPE_CHECKING
)

from azure.core.async_paging import AsyncItemPaged
from azure.core.exceptions import HttpResponseError, ResourceNotFoundError
from azure.core.pipeline import AsyncPipeline
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
from .._parser import _get_file_permission, _datetime_to_str
from .._shared.parser import _str

from .._generated.aio import AzureFileStorage
from .._shared.base_client_async import AsyncStorageAccountHostsMixin, AsyncTransportWrapper
from .._shared.policies_async import ExponentialRetry
from .._shared.request_handlers import add_metadata_headers
from .._shared.response_handlers import return_response_headers, process_storage_error
from .._deserialize import deserialize_directory_properties
from .._serialize import get_api_version, get_dest_access_conditions, get_rename_smb_properties
from .._directory_client import ShareDirectoryClient as ShareDirectoryClientBase
from ._file_client_async import ShareFileClient
from ._models import DirectoryPropertiesPaged, HandlesPaged

if TYPE_CHECKING:
    from datetime import datetime
    from .._models import ShareProperties, DirectoryProperties, ContentSettings, NTFSAttributes
    from .._generated.models import HandleItem


[docs]class ShareDirectoryClient(AsyncStorageAccountHostsMixin, ShareDirectoryClientBase): """A client to interact with a specific directory, although it may not yet exist. For operations relating to a specific subdirectory or file in this share, the clients for those entities can also be retrieved using the :func:`get_subdirectory_client` and :func:`get_file_client` functions. :param str account_url: The URI to the storage account. In order to create a client given the full URI to the directory, use the :func:`from_directory_url` classmethod. :param share_name: The name of the share for the directory. :type share_name: str :param str directory_path: The directory path for the directory with which to interact. If specified, this value will override a directory value specified in the directory URL. :param str snapshot: An optional share snapshot on which to operate. This can be the snapshot ID string or the response returned from :func:`ShareClient.create_snapshot`. :param credential: The credentials with which to authenticate. This is optional if the account URL already has a SAS token. The value can be a SAS token string, an instance of a AzureSasCredential or AzureNamedKeyCredential from azure.core.credentials, an account shared access key, or an instance of a TokenCredentials class from azure.identity. If the resource URI already contains a SAS token, this will be ignored in favor of an explicit credential - except in the case of AzureSasCredential, where the conflicting SAS tokens will raise a ValueError. If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key" should be the storage account key. :keyword str api_version: The Storage API version to use for requests. Default value is the most recent service version that is compatible with the current SDK. Setting to an older version may result in reduced feature compatibility. .. versionadded:: 12.1.0 :keyword str secondary_hostname: The hostname of the secondary endpoint. :keyword int max_range_size: The maximum range size used for a file upload. Defaults to 4*1024*1024. """ def __init__( # type: ignore self, account_url, # type: str share_name, # type: str directory_path, # type: str snapshot=None, # type: Optional[Union[str, Dict[str, Any]]] credential=None, # type: Optional[Union[str, Dict[str, str], AzureNamedKeyCredential, AzureSasCredential, "TokenCredential"]] # pylint: disable=line-too-long **kwargs # type: Optional[Any] ): # type: (...) -> None kwargs['retry_policy'] = kwargs.get('retry_policy') or ExponentialRetry(**kwargs) loop = kwargs.pop('loop', None) if loop and sys.version_info >= (3, 8): warnings.warn("The 'loop' parameter was deprecated from asyncio's high-level" "APIs in Python 3.8 and is no longer supported.", DeprecationWarning) super(ShareDirectoryClient, self).__init__( account_url, share_name=share_name, directory_path=directory_path, snapshot=snapshot, credential=credential, **kwargs) self._client = AzureFileStorage(self.url, base_url=self.url, pipeline=self._pipeline) self._client._config.version = get_api_version(kwargs) # pylint: disable=protected-access
[docs] def get_file_client(self, file_name, **kwargs): # type: (str, Any) -> ShareFileClient """Get a client to interact with a specific file. The file need not already exist. :param str file_name: The name of the file. :returns: A File Client. :rtype: ~azure.storage.fileshare.ShareFileClient """ if self.directory_path: file_name = self.directory_path.rstrip('/') + "/" + file_name _pipeline = AsyncPipeline( transport=AsyncTransportWrapper(self._pipeline._transport), # pylint: disable = protected-access policies=self._pipeline._impl_policies # pylint: disable = protected-access ) return ShareFileClient( self.url, file_path=file_name, share_name=self.share_name, snapshot=self.snapshot, credential=self.credential, api_version=self.api_version, _hosts=self._hosts, _configuration=self._config, _pipeline=_pipeline, _location_mode=self._location_mode, **kwargs)
[docs] def get_subdirectory_client(self, directory_name, **kwargs): # type: (str, Any) -> ShareDirectoryClient """Get a client to interact with a specific subdirectory. The subdirectory need not already exist. :param str directory_name: The name of the subdirectory. :returns: A Directory Client. :rtype: ~azure.storage.fileshare.aio.ShareDirectoryClient .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START get_subdirectory_client] :end-before: [END get_subdirectory_client] :language: python :dedent: 16 :caption: Gets the subdirectory client. """ directory_path = self.directory_path.rstrip('/') + "/" + directory_name _pipeline = AsyncPipeline( transport=AsyncTransportWrapper(self._pipeline._transport), # pylint: disable = protected-access policies=self._pipeline._impl_policies # pylint: disable = protected-access ) return ShareDirectoryClient( self.url, share_name=self.share_name, directory_path=directory_path, snapshot=self.snapshot, credential=self.credential, api_version=self.api_version, _hosts=self._hosts, _configuration=self._config, _pipeline=_pipeline, _location_mode=self._location_mode, **kwargs)
[docs] @distributed_trace_async async def create_directory(self, **kwargs): # type: (Any) -> Dict[str, Any] """Creates a new directory under the directory referenced by the client. :keyword file_attributes: The file system attributes for files and directories. If not set, the default value would be "none" and the attributes will be set to "Archive". Here is an example for when the var type is str: 'Temporary|Archive'. file_attributes value is not case sensitive. :paramtype file_attributes: str or :class:`~azure.storage.fileshare.NTFSAttributes` :keyword file_creation_time: Creation time for the directory. Default value: "now". :paramtype file_creation_time: str or ~datetime.datetime :keyword file_last_write_time: Last write time for the directory. Default value: "now". :paramtype file_last_write_time: str or ~datetime.datetime :keyword str file_permission: If specified the permission (security descriptor) shall be set for the directory/file. This header can be used if Permission size is <= 8KB, else file-permission-key header shall be used. Default value: Inherit. If SDDL is specified as input, it must have owner, group and dacl. Note: Only one of the file-permission or file-permission-key should be specified. :keyword str file_permission_key: Key of the permission to be set for the directory/file. Note: Only one of the file-permission or file-permission-key should be specified. :keyword file_change_time: Change time for the directory. If not specified, change time will be set to the current date/time. .. versionadded:: 12.8.0 This parameter was introduced in API version '2021-06-08'. :paramtype file_change_time: str or ~datetime.datetime :keyword dict(str,str) metadata: Name-value pairs associated with the directory as metadata. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: Directory-updated property dict (Etag and last modified). :rtype: dict(str, Any) .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START create_directory] :end-before: [END create_directory] :language: python :dedent: 16 :caption: Creates a directory. """ metadata = kwargs.pop('metadata', None) timeout = kwargs.pop('timeout', None) headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) # type: ignore file_attributes = kwargs.pop('file_attributes', 'none') file_creation_time = kwargs.pop('file_creation_time', 'now') file_last_write_time = kwargs.pop('file_last_write_time', 'now') file_change_time = kwargs.pop('file_change_time', None) file_permission = kwargs.pop('file_permission', None) file_permission_key = kwargs.pop('file_permission_key', None) file_permission = _get_file_permission(file_permission, file_permission_key, 'inherit') try: return await self._client.directory.create( # type: ignore file_attributes=str(file_attributes), file_creation_time=_datetime_to_str(file_creation_time), file_last_write_time=_datetime_to_str(file_last_write_time), file_change_time=_datetime_to_str(file_change_time), file_permission=file_permission, file_permission_key=file_permission_key, timeout=timeout, cls=return_response_headers, headers=headers, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace_async async def delete_directory(self, **kwargs): # type: (**Any) -> None """Marks the directory for deletion. The directory is later deleted during garbage collection. :keyword int timeout: The timeout parameter is expressed in seconds. :rtype: None .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START delete_directory] :end-before: [END delete_directory] :language: python :dedent: 16 :caption: Deletes a directory. """ timeout = kwargs.pop('timeout', None) try: await self._client.directory.delete(timeout=timeout, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace_async async def rename_directory( self, new_name, # type: str **kwargs # type: Any ): # type: (...) -> ShareDirectoryClient """ Rename the source directory. :param str new_name: The new directory name. :keyword int timeout: The timeout parameter is expressed in seconds. :keyword bool overwrite: A boolean value for if the destination file already exists, whether this request will overwrite the file or not. If true, the rename will succeed and will overwrite the destination file. If not provided or if false and the destination file does exist, the request will not overwrite the destination file. If provided and the destination file doesn't exist, the rename will succeed. :keyword bool ignore_read_only: A boolean value that specifies whether the ReadOnly attribute on a preexisting destination file should be respected. If true, the rename will succeed, otherwise, a previous file at the destination with the ReadOnly attribute set will cause the rename to fail. :keyword str file_permission: If specified the permission (security descriptor) shall be set for the directory. This header can be used if Permission size is <= 8KB, else file_permission_key shall be used. If SDDL is specified as input, it must have owner, group and dacl. A value of 'preserve' can be passed to preserve source permissions. Note: Only one of the file_permission or file_permission_key should be specified. :keyword str file_permission_key: Key of the permission to be set for the directory. Note: Only one of the file-permission or file-permission-key should be specified. :keyword file_attributes: The file system attributes for the directory. :paramtype file_attributes:~azure.storage.fileshare.NTFSAttributes or str :keyword file_creation_time: Creation time for the directory. :paramtype file_creation_time:~datetime.datetime or str :keyword file_last_write_time: Last write time for the file. :paramtype file_last_write_time:~datetime.datetime or str :keyword file_change_time: Change time for the directory. If not specified, change time will be set to the current date/time. .. versionadded:: 12.8.0 This parameter was introduced in API version '2021-06-08'. :paramtype file_change_time: str or ~datetime.datetime :keyword Dict[str,str] metadata: A name-value pair to associate with a file storage object. :keyword destination_lease: Required if the destination file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. :paramtype destination_lease: ~azure.storage.fileshare.ShareLeaseClient or str :returns: The new Directory Client. :rtype: ~azure.storage.fileshare.ShareDirectoryClient """ if not new_name: raise ValueError("Please specify a new directory name.") new_name = new_name.strip('/') new_path_and_query = new_name.split('?') new_dir_path = new_path_and_query[0] if len(new_path_and_query) == 2: new_dir_sas = new_path_and_query[1] or self._query_str.strip('?') else: new_dir_sas = self._query_str.strip('?') new_directory_client = ShareDirectoryClient( '{}://{}'.format(self.scheme, self.primary_hostname), self.share_name, new_dir_path, credential=new_dir_sas or self.credential, api_version=self.api_version, _hosts=self._hosts, _configuration=self._config, _pipeline=self._pipeline, _location_mode=self._location_mode ) kwargs.update(get_rename_smb_properties(kwargs)) timeout = kwargs.pop('timeout', None) overwrite = kwargs.pop('overwrite', None) metadata = kwargs.pop('metadata', None) headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) destination_access_conditions = get_dest_access_conditions(kwargs.pop('destination_lease', None)) try: await new_directory_client._client.directory.rename( # pylint: disable=protected-access self.url, timeout=timeout, replace_if_exists=overwrite, destination_lease_access_conditions=destination_access_conditions, headers=headers, **kwargs) return new_directory_client except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def list_directories_and_files(self, name_starts_with=None, **kwargs): # type: (Optional[str], Any) -> AsyncItemPaged """Lists all the directories and files under the directory. :param str name_starts_with: Filters the results to return only entities whose names begin with the specified prefix. :keyword list[str] include: Include this parameter to specify one or more datasets to include in the response. Possible str values are "timestamps", "Etag", "Attributes", "PermissionKey". .. versionadded:: 12.6.0 This keyword argument was introduced in API version '2020-10-02'. :keyword bool include_extended_info: If this is set to true, file id will be returned in listed results. .. versionadded:: 12.6.0 This keyword argument was introduced in API version '2020-10-02'. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: An auto-paging iterable of dict-like DirectoryProperties and FileProperties :rtype: ~azure.core.async_paging.AsyncItemPaged[DirectoryProperties and FileProperties] .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START lists_directory] :end-before: [END lists_directory] :language: python :dedent: 16 :caption: List directories and files. """ timeout = kwargs.pop('timeout', None) results_per_page = kwargs.pop('results_per_page', None) command = functools.partial( self._client.directory.list_files_and_directories_segment, sharesnapshot=self.snapshot, timeout=timeout, **kwargs) return AsyncItemPaged( command, prefix=name_starts_with, results_per_page=results_per_page, page_iterator_class=DirectoryPropertiesPaged)
[docs] @distributed_trace def list_handles(self, recursive=False, **kwargs): # type: (bool, Any) -> AsyncItemPaged """Lists opened handles on a directory or a file under the directory. :param bool recursive: Boolean that specifies if operation should apply to the directory specified by the client, its files, its subdirectories and their files. Default value is False. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: An auto-paging iterable of HandleItem :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.storage.fileshare.HandleItem] """ timeout = kwargs.pop('timeout', None) results_per_page = kwargs.pop('results_per_page', None) command = functools.partial( self._client.directory.list_handles, sharesnapshot=self.snapshot, timeout=timeout, recursive=recursive, **kwargs) return AsyncItemPaged( command, results_per_page=results_per_page, page_iterator_class=HandlesPaged)
[docs] @distributed_trace_async async def exists(self, **kwargs): # type: (**Any) -> bool """ Returns True if a directory exists and returns False otherwise. :kwarg int timeout: The timeout parameter is expressed in seconds. :returns: True if the directory exists, False otherwise. :rtype: bool """ try: await self._client.directory.get_properties(**kwargs) return True except HttpResponseError as error: try: process_storage_error(error) except ResourceNotFoundError: return False
[docs] @distributed_trace_async async def close_handle(self, handle, **kwargs): # type: (Union[str, HandleItem], Any) -> Dict[str, int] """Close an open file handle. :param handle: A specific handle to close. :type handle: str or ~azure.storage.fileshare.Handle :keyword int timeout: The timeout parameter is expressed in seconds. :returns: The number of handles closed (this may be 0 if the specified handle was not found) and the number of handles failed to close in a dict. :rtype: dict[str, int] """ try: handle_id = handle.id # type: ignore except AttributeError: handle_id = handle if handle_id == '*': raise ValueError("Handle ID '*' is not supported. Use 'close_all_handles' instead.") try: response = await self._client.directory.force_close_handles( handle_id, marker=None, recursive=None, sharesnapshot=self.snapshot, cls=return_response_headers, **kwargs ) return { 'closed_handles_count': response.get('number_of_handles_closed', 0), 'failed_handles_count': response.get('number_of_handles_failed', 0) } except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace_async async def close_all_handles(self, recursive=False, **kwargs): # type: (bool, Any) -> Dict[str, int] """Close any open file handles. This operation will block until the service has closed all open handles. :param bool recursive: Boolean that specifies if operation should apply to the directory specified by the client, its files, its subdirectories and their files. Default value is False. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: The number of handles closed (this may be 0 if the specified handle was not found) and the number of handles failed to close in a dict. :rtype: dict[str, int] """ timeout = kwargs.pop('timeout', None) start_time = time.time() try_close = True continuation_token = None total_closed = 0 total_failed = 0 while try_close: try: response = await self._client.directory.force_close_handles( handle_id='*', timeout=timeout, marker=continuation_token, recursive=recursive, sharesnapshot=self.snapshot, cls=return_response_headers, **kwargs ) except HttpResponseError as error: process_storage_error(error) continuation_token = response.get('marker') try_close = bool(continuation_token) total_closed += response.get('number_of_handles_closed', 0) total_failed += response.get('number_of_handles_failed', 0) if timeout: timeout = max(0, timeout - (time.time() - start_time)) return { 'closed_handles_count': total_closed, 'failed_handles_count': total_failed }
[docs] @distributed_trace_async async def get_directory_properties(self, **kwargs): # type: (Any) -> DirectoryProperties """Returns all user-defined metadata and system properties for the specified directory. The data returned does not include the directory's list of files. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: DirectoryProperties :rtype: ~azure.storage.fileshare.DirectoryProperties """ timeout = kwargs.pop('timeout', None) try: response = await self._client.directory.get_properties( timeout=timeout, cls=deserialize_directory_properties, **kwargs) except HttpResponseError as error: process_storage_error(error) return response # type: ignore
[docs] @distributed_trace_async async def set_directory_metadata(self, metadata, **kwargs): # type: (Dict[str, Any], Any) -> Dict[str, Any] """Sets the metadata for the directory. Each call to this operation replaces all existing metadata attached to the directory. To remove all metadata from the directory, call this operation with an empty metadata dict. :param metadata: Name-value pairs associated with the directory as metadata. :type metadata: dict(str, str) :keyword int timeout: The timeout parameter is expressed in seconds. :returns: Directory-updated property dict (Etag and last modified). :rtype: dict(str, Any) """ timeout = kwargs.pop('timeout', None) headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) try: return await self._client.directory.set_metadata( # type: ignore timeout=timeout, cls=return_response_headers, headers=headers, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace_async async def set_http_headers(self, file_attributes="none", # type: Union[str, NTFSAttributes] file_creation_time="preserve", # type: Optional[Union[str, datetime]] file_last_write_time="preserve", # type: Optional[Union[str, datetime]] file_permission=None, # type: Optional[str] permission_key=None, # type: Optional[str] **kwargs # type: Any ): # type: (...) -> Dict[str, Any] """Sets HTTP headers on the directory. :param file_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' :type file_attributes: str or :class:`~azure.storage.fileshare.NTFSAttributes` :param file_creation_time: Creation time for the file Default value: Preserve. :type file_creation_time: str or datetime :param file_last_write_time: Last write time for the file Default value: Preserve. :type file_last_write_time: str or datetime :param file_permission: If specified the permission (security descriptor) shall be set for the directory/file. This header can be used if Permission size is <= 8KB, else x-ms-file-permission-key header shall be used. Default value: Inherit. If SDDL is specified as input, it must have owner, group and dacl. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type file_permission: str :param permission_key: Key of the permission to be set for the directory/file. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type permission_key: str :keyword file_change_time: Change time for the directory. If not specified, change time will be set to the current date/time. .. versionadded:: 12.8.0 This parameter was introduced in API version '2021-06-08'. :paramtype file_change_time: str or ~datetime.datetime :keyword int timeout: The timeout parameter is expressed in seconds. :returns: File-updated property dict (Etag and last modified). :rtype: dict(str, Any) """ timeout = kwargs.pop('timeout', None) file_permission = _get_file_permission(file_permission, permission_key, 'preserve') file_change_time = kwargs.pop('file_change_time', None) try: return await self._client.directory.set_properties( # type: ignore file_attributes=_str(file_attributes), file_creation_time=_datetime_to_str(file_creation_time), file_last_write_time=_datetime_to_str(file_last_write_time), file_change_time=_datetime_to_str(file_change_time), file_permission=file_permission, file_permission_key=permission_key, timeout=timeout, cls=return_response_headers, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace_async async def create_subdirectory( self, directory_name, # type: str **kwargs ): # type: (...) -> ShareDirectoryClient """Creates a new subdirectory and returns a client to interact with the subdirectory. :param str directory_name: The name of the subdirectory. :keyword dict(str,str) metadata: Name-value pairs associated with the subdirectory as metadata. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: ShareDirectoryClient :rtype: ~azure.storage.fileshare.aio.ShareDirectoryClient .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START create_subdirectory] :end-before: [END create_subdirectory] :language: python :dedent: 16 :caption: Create a subdirectory. """ metadata = kwargs.pop('metadata', None) timeout = kwargs.pop('timeout', None) subdir = self.get_subdirectory_client(directory_name) await subdir.create_directory(metadata=metadata, timeout=timeout, **kwargs) return subdir # type: ignore
[docs] @distributed_trace_async async def delete_subdirectory( self, directory_name, # type: str **kwargs ): # type: (...) -> None """Deletes a subdirectory. :param str directory_name: The name of the subdirectory. :keyword int timeout: The timeout parameter is expressed in seconds. :rtype: None .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START delete_subdirectory] :end-before: [END delete_subdirectory] :language: python :dedent: 16 :caption: Delete a subdirectory. """ timeout = kwargs.pop('timeout', None) subdir = self.get_subdirectory_client(directory_name) await subdir.delete_directory(timeout=timeout, **kwargs)
[docs] @distributed_trace_async async def upload_file( self, file_name, # type: str data, # type: Any length=None, # type: Optional[int] **kwargs # type: Any ): # type: (...) -> ShareFileClient """Creates a new file in the directory and returns a ShareFileClient to interact with the file. :param str file_name: The name of the file. :param Any data: Content of the file. :param int length: Length of the file in bytes. Specify its maximum size, up to 1 TiB. :keyword dict(str,str) metadata: Name-value pairs associated with the file as metadata. :keyword ~azure.storage.fileshare.ContentSettings content_settings: ContentSettings object used to set file properties. Used to set content type, encoding, language, disposition, md5, and cache control. :keyword bool validate_content: If true, calculates an MD5 hash for each range of the file. The storage service checks the hash of the content that has arrived with the hash that was sent. This is primarily valuable for detecting bitflips on the wire if using http instead of https as https (the default) will already validate. Note that this MD5 hash is not stored with the file. :keyword int max_concurrency: Maximum number of parallel connections to use. :keyword progress_hook: An async callback to track the progress of a long running upload. The signature is function(current: int, total: Optional[int]) where current is the number of bytes transferred so far, and total is the size of the blob or None if the size is unknown. :paramtype progress_hook: Callable[[int, Optional[int]], Awaitable[None]] :keyword int timeout: The timeout parameter is expressed in seconds. :keyword str encoding: Defaults to UTF-8. :returns: ShareFileClient :rtype: ~azure.storage.fileshare.aio.ShareFileClient .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START upload_file_to_directory] :end-before: [END upload_file_to_directory] :language: python :dedent: 16 :caption: Upload a file to a directory. """ file_client = self.get_file_client(file_name) await file_client.upload_file( data, length=length, **kwargs) return file_client # type: ignore
[docs] @distributed_trace_async async def delete_file( self, file_name, # type: str **kwargs # type: Optional[Any] ): # type: (...) -> None """Marks the specified file for deletion. The file is later deleted during garbage collection. :param str file_name: The name of the file to delete. :keyword int timeout: The timeout parameter is expressed in seconds. :rtype: None .. admonition:: Example: .. literalinclude:: ../samples/file_samples_directory_async.py :start-after: [START delete_file_in_directory] :end-before: [END delete_file_in_directory] :language: python :dedent: 16 :caption: Delete a file in a directory. """ file_client = self.get_file_client(file_name) await file_client.delete_file(**kwargs)