This commit is contained in:
hong-revo 2018-12-26 18:38:06 +11:00
Родитель b9fad2b5f4
Коммит 9abbc25eeb
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -134,7 +134,7 @@ print.adls_endpoint <- function(x, ...)
#' @param overwrite For downloading, whether to overwrite any destination files that exist.
#'
#' @details
#' These functions allow you to transfer files to and from a storage account, given the URL of the destination (for uploading) or source (for downloading). They dispatch to [upload_azure_file]/[download_azure_file] for a file storage URL, [upload_blob]/[download_blob] for a blob storage URL, and [upoad_adls_file]/[download_adls_file] for an ADLSgen2 URL respectively.
#' These functions allow you to transfer files to and from a storage account, given the URL of the destination (for uploading) or source (for downloading). They dispatch to [upload_azure_file]/[download_azure_file] for a file storage URL, [upload_blob]/[download_blob] for a blob storage URL, and [upload_adls_file]/[download_adls_file] for an ADLSgen2 URL respectively.
#'
#' You can provide a SAS either as part of the URL itself, or in the `sas` argument.
#'

Просмотреть файл

@ -23,7 +23,7 @@ upload_to_url(src, dest, key = NULL, sas = NULL, ...)
Generic upload and download
}
\details{
These functions allow you to transfer files to and from a storage account, given the URL of the destination (for uploading) or source (for downloading). They dispatch to \link{upload_azure_file}/\link{download_azure_file} for a file storage URL, \link{upload_blob}/\link{download_blob} for a blob storage URL, and \link{upoad_adls_file}/\link{download_adls_file} for an ADLSgen2 URL respectively.
These functions allow you to transfer files to and from a storage account, given the URL of the destination (for uploading) or source (for downloading). They dispatch to \link{upload_azure_file}/\link{download_azure_file} for a file storage URL, \link{upload_blob}/\link{download_blob} for a blob storage URL, and \link{upload_adls_file}/\link{download_adls_file} for an ADLSgen2 URL respectively.
You can provide a SAS either as part of the URL itself, or in the \code{sas} argument.
}