I cant seem to get rcount to increase. filelist has 23 files in it but the counter rcount stays as 1 ?
e.g. Process 1 of 23
Process 1 of 23 etc..
purrr::map_df(.x = filelist,
.f = ~ {
rcount <- rcount + 1
print(glue::glue("Process {rcount} of {length(filelist)}"))
}
)
}