Get the file path of a records
or an rtoi
Usage
get_dir(x)
# S4 method for class 'records'
get_dir(x)
# S4 method for class 'records'
get_order(x)
# S4 method for class 'rtoi'
get_dir(x)
Examples
if (FALSE) { # \dontrun{
# load example rtoi
file.copy(from=system.file("ex/Navarre",package="rsat"),
to=tempdir(),
recursive = TRUE)
navarre <- read_rtoi(file.path(tempdir(),"Navarre"))
# get the path of the
get_dir(navarre)
# get the records
rcds <- records(navarre)
# gets the relative path to store records data
get_dir(rcds)
} # }