rio icon indicating copy to clipboard operation
rio copied to clipboard

`bzip2` and `xz` don't work

Open chainsawriot opened this issue 2 months ago • 0 comments

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

chainsawriot avatar Apr 25 '24 18:04 chainsawriot