Copy for creating figures dir

(For book export)
This commit is contained in:
hadley 2016-11-21 08:28:57 -06:00
parent 4dd8bb4676
commit b2f36a1cfc
2 changed files with 19 additions and 0 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@ libs
_main.*
bookdown*
tmp-pdfcrop-*
figures

18
figures.R Normal file
View File

@ -0,0 +1,18 @@
library(stringr)
library(purrr)
chapters <- dir("_bookdown_files", full.names = TRUE, pattern = "_files$")
figures <- dir(chapters, full.names = TRUE, pattern = "-latex")
name <- figures %>%
dirname() %>%
basename() %>%
str_replace("_files", "")
out_path <- file.path("figures", name)
dir.create("figures/")
out_path %>% walk(dir.create)
map2(figures, out_path, ~ file.copy(dir(.x, full.names = TRUE), .y))