Skip to contents

Retrieves a specific metadata value from a .rcdf file.

Usage

get_rcdf_metadata(path, name = NULL, key)

Arguments

path

Character string. The file path to the .rcdf file.

name

Character string. The metadata key to extract from the file.

key

[Deprecated] Character string. The metadata key to extract from the file.

Value

The value associated with the specified metadata key, or NULL if the key does not exist.

Examples

if (FALSE) { # \dontrun{
# Assuming "example.rcdf" is a valid RCDF file in the working directory:
get_rcdf_metadata("example.rcdf", "log_id")
} # }