Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up| tex_cleanup <- function( | |
| cleanup, | |
| stem, | |
| keep_pdf, | |
| keep_log = FALSE, | |
| fileDir = tex_opts$get('fileDir')){ | |
| if( !is.null(cleanup) ){ | |
| tempDel <- list.files( | |
| fileDir, | |
| sprintf('%s(.*?)(%s)',stem,paste0(cleanup,collapse ='|')), | |
| full.names = TRUE) | |
| if(keep_log){ | |
| tempDel <- tempDel[!grepl('log$',tempDel)] | |
| } | |
| if(keep_pdf){ | |
| tempDel <- tempDel[!grepl('pdf$',tempDel)] | |
| } | |
| unlink(tempDel) | |
| } | |
| } |