list_endpoints: List endpoints in WORCS project

View source: R/endpoint.R

list_endpointsR Documentation

List endpoints in WORCS project

Description

List the endpoints in a WORCS project.

Usage

list_endpoints(worcs_directory = ".", verbose = TRUE, ...)

Arguments

worcs_directory

Character, indicating the WORCS project directory to which to save data. The default value "." points to the current directory. Default: '.'

verbose

Logical. Whether or not to print status messages to the console. Default: TRUE

...

Additional arguments.

Value

None, prints to the console.

See Also

add_endpoint snapshot_endpoints

Examples

if(requireNamespace("withr", quietly = TRUE)){
  withr::with_tempdir({
    file.create(".worcs")
    write.csv(iris, "iris.csv")
    add_endpoint("iris.csv")
    list_endpoints()
  })
}

worcs documentation built on June 8, 2025, 10:25 a.m.