Hello there!
I have a bunch of zipped files and I need to compute a md5sum
for each of them.
I believe I am using the tidyverse
state-of-the-art:
library(fs)
library(purrr)local_list <- dir_info('/mypath/mydata/, glob = '*.gz') %>%
pluck('path') %>% as.list()map(local_list, tools::md5sum)
However this fails on an error 502
and crashes my Rstudio.
Instead, running md5sum()
on a single file works. What can be the issue here?
Thanks!