rio icon indicating copy to clipboard operation
rio copied to clipboard

rio::import not working for zip files

Open alexmunday17 opened this issue 1 month ago • 0 comments

filename <- "tmp.csv"
zip_file <- "test.zip"
write.csv(1, filename)
zip(zip_file, filename)
x <- rio::import(zip_file)
file.remove(filename)
file.remove(zip_file)

This works on rio 1.0.1 but not rio 1.1.0. It looks to be something to do with this commit

alexmunday17 avatar May 29 '24 13:05 alexmunday17