| import_directory | R Documentation | 
Imports directory into store
import_directory(
  store,
  path,
  read_function,
  glob = NULL,
  regexp = NULL,
  recursive = TRUE,
  ...
)
store | 
 instance of the store to import data into  | 
path | 
 to directory containing the data files  | 
read_function | 
 function with argument file, ... is passed to this function to supply additionals arguments  | 
glob | 
 see   | 
regexp | 
 see   | 
recursive | 
 see   | 
... | 
 passed to the read_function  | 
format <- rOstluft::format_rolf()
store <- rOstluft::storage_local_rds("example_rOstluft", format, read.only = FALSE)
path <- system.file("extdata", package = "rOstluft.data")
rOstluft::import_directory(store, path, rOstluft::read_airmo_csv, glob = "*Jan.csv")
store$get_content()
store$destroy("DELETE")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.