ShareDirectoryClient.Rename Method
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.
Renames a directory. This API does not support renaming a directory from one share to another, or between storage accounts.
public virtual Azure.Response<Azure.Storage.Files.Shares.ShareDirectoryClient> Rename (string destinationPath, Azure.Storage.Files.Shares.Models.ShareFileRenameOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member Rename : string * Azure.Storage.Files.Shares.Models.ShareFileRenameOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.ShareDirectoryClient>
override this.Rename : string * Azure.Storage.Files.Shares.Models.ShareFileRenameOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.ShareDirectoryClient>
Public Overridable Function Rename (destinationPath As String, Optional options As ShareFileRenameOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ShareDirectoryClient)
Parameters
- destinationPath
- String
The destination path to rename the directory to.
- options
- ShareFileRenameOptions
Optional parameters.
- cancellationToken
- CancellationToken
Optional CancellationToken to propagate notifications that the operation should be cancelled.
Returns
A Response<T> pointed at the newly renamed directory.
Remarks
A RequestFailedException will be thrown if a failure occurs.
Applies to
Azure SDK for .NET