load_all_modules: Load All Modules.

Description Usage Arguments Warning See Also Examples

View source: R/load.R

Description

Load or reload all modules which are defined in the named directory.

Usage

1
2
3
load_all_modules(path = c("lib", "libs", "module", "modules", "."),
  pattern = "[^_]\\.[rR][(?:md)|(?:nw)]?$", full.names = TRUE,
  recursive = TRUE, ...)

Arguments

path

a character vector of full path names; the default corresponds to the working directory, getwd(). Tilde expansion (see path.expand) is performed. Missing values will be ignored.

pattern

an optional regular expression. Only file names which match the regular expression will be returned.

full.names

a logical value. If TRUE, the directory path is prepended to the file names to give a relative file path. If FALSE, the file names (rather than paths) are returned.

recursive

logical. Should the listing recurse into directories?

...

Further arguments to be passed to base::list.files.

Warning

It is considered a very bad practice to define, touch, undefine, load, make, reset, or perform any other operation from within a module definition that may alterate the internal state of modulr.

See Also

load_module, make_all, and reset.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
reset()
tmp_dir <- tempfile("modulr_")
dir.create(tmp_dir)
tmp_file <- file.path(tmp_dir, "foo.R")
cat('define("foo", NULL, function() print("Hello World!"))', file = tmp_file)
tmp_file <- file.path(tmp_dir, "bar.R")
cat('define("bar", NULL, function() print("hELLO wORLD?"))', file = tmp_file)
load_all_modules(tmp_dir)
make_all()
unlink(tmp_dir, recursive = TRUE)

openscienceunil/modulr documentation built on May 3, 2019, 5:49 p.m.