gesistsa / rio

🐟 A Swiss-Army Knife for Data I/O
http://gesistsa.github.io/rio/
600 stars 76 forks source link

`bzip2` and `xz` don't work #396

Closed chainsawriot closed 4 months ago

chainsawriot commented 5 months ago

ref #395 #354

tempfile3 <- tempfile(fileext = ".csv.bzip2")
rio::export(iris, tempfile3)
file.exists(tempfile3)
#> [1] FALSE

tempfile3 <- tempfile(fileext = ".csv.tar")
rio::export(iris, tempfile3)
file.exists(tempfile3)
#> [1] TRUE

Created on 2024-04-25 with reprex v2.1.0