You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
304B

  1. if (!dir.exists(here::here("images"))) dir.create(here::here("images"))
  2. png_path <- here::here("images", "static", "png")
  3. svg_path <- here::here("images", "static", "svg")
  4. if (!dir.exists(png_path)) dir.create(png_path, recursive = TRUE)
  5. if (!dir.exists(svg_path)) dir.create(svg_path, recursive = TRUE)