use_csv_data_storage: Use CSVs for storing data

View source: R/use_csv_data_storage.R

use_csv_data_storageR Documentation

Use CSVs for storing data

Description

Sets up examples of the four CSVs needed for building CV

Usage

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


# 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 25, 2024, 3:23 a.m.