您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

6 行
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)