Create the appropriate directory system to be able to run functions without specifying hard filepaths
create_directory_system.Rd
Create the appropriate directory system to be able to run functions without specifying hard filepaths
Examples
## Create directory system compatible with rcprd's automatic saving of output
create_directory_system(tempdir())
#> Directory system being created in /tmp/Rtmpjy3kVR
file.exists(file.path(tempdir(),"data"))
#> [1] TRUE
file.exists(file.path(tempdir(),"code"))
#> [1] TRUE
file.exists(file.path(tempdir(),"codelists"))
#> [1] TRUE
## Return filespace to how it was prior to example
delete_directory_system(tempdir())
#> Directory system being deleted from /tmp/Rtmpjy3kVR