Skip to contents

Downloads a file to the remote SAS server.

Usage

sas_download(sas_path, local_path)

Arguments

sas_path

Path of file on remote SAS server to be download

local_path

Path to upload SAS file to on local machine.

Value

No return value.

Examples

if (FALSE) { # \dontrun{
sas_connect()

# upload document to SAS
quarto_file <- system.file("sasquatch.qmd", package = "sasquatch")
sas_upload(quarto_file, "sasquatch.qmd")

# download document from SAS
sas_download("sasquatch.qmd", "sasquatch.qmd")
} # }