#' Setup File Directory For Project
#'
#' Creates all of the necessary sub-directories for the project.
#' @keywords Setup
#' @export
#' @examples
#' Project_Setup()
Project_Setup <- function(){
if(!file.exists("Important")){dir.create("Important")}
if(!file.exists("Report")){dir.create("Report")}
if(!file.exists("Output")){dir.create("Output")}
if(!file.exists("Quality_Control")){dir.create("Quality_Control")}
if(!file.exists("Backups")){dir.create("Backups")}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.