use_csv_data_storage: Use CSVs for storing data

Description Usage Arguments Value Examples

View source: R/use_csv_data_storage.R

Description

Sets up examples of the four CSVs needed for building CV

Usage

1
use_csv_data_storage(folder_name = "data", create_output_dir = TRUE)

Arguments

folder_name

Name of the folder you want csvs stored in relative to current working directory

create_output_dir

If the requested output directory is missing should it be created?

Value

A new folder <folder_name>/ with entries.csv, text_blocks.csv, language_skills.csv, and contact_info.csv in it. working directory.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Make a temp directory for placing files
# This would be a real location for a typical situation
temp_dir <- fs::dir_create(fs::path(tempdir(), "cv_w_csvs"))

datadrivencv::use_csv_data_storage(
  folder_name = fs::path(temp_dir, "csv_data"),
  create_output_dir = TRUE
)

list.files(fs::path(temp_dir, "csv_data"))

nstrayer/datadrivencv documentation built on June 6, 2020, 5:46 a.m.