你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Core.RenameAsync 方法

定义

重命名路径。 对于重命名目录:如果目标存在,则会将源目录置于目标下的一个级别。

public static System.Threading.Tasks.Task<bool> RenameAsync (string path, string destination, bool overwrite, Microsoft.Azure.DataLake.Store.AdlsClient client, Microsoft.Azure.DataLake.Store.RequestOptions req, Microsoft.Azure.DataLake.Store.OperationResponse resp, System.Threading.CancellationToken cancelToken = default);
static member RenameAsync : string * string * bool * Microsoft.Azure.DataLake.Store.AdlsClient * Microsoft.Azure.DataLake.Store.RequestOptions * Microsoft.Azure.DataLake.Store.OperationResponse * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Shared Function RenameAsync (path As String, destination As String, overwrite As Boolean, client As AdlsClient, req As RequestOptions, resp As OperationResponse, Optional cancelToken As CancellationToken = Nothing) As Task(Of Boolean)

参数

path
String

源文件或目录的路径

destination
String

目标路径

overwrite
Boolean

对于文件:如果为 true,则覆盖目标文件(如果存在)。对于目录:如果目标目录存在,则此标志没有用。 因为它将源置于目标下一级。 如果目标路径下有一个与源同名的子目录,则此标志没有用处。 重命名失败

client
AdlsClient

ADLS 客户端

req
RequestOptions

用于更改 Http 请求行为的选项

resp
OperationResponse

存储 Http 请求的响应/输出

cancelToken
CancellationToken

CancellationToken 取消请求

返回

如果重命名成功,则为 True,否则为 false

适用于