Skip to contents

Deletes a file or directory from the remote SAS server.

Usage

sas_remove(path)

Arguments

path

Path of file on remote SAS server to be deleted.

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")

# remove document from SAS
sas_remove("sasquatch.qmd")
} # }