gesistsa / rio

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

`export` does not write to new directory #347

Closed chainsawriot closed 12 months ago

chainsawriot commented 12 months ago

346

export(mtcars,"i_dont_exist/test.csv")
schochastics commented 12 months ago

Since i am still working on that in #346, we should probably make sure that this also works

export(mtcars,"i_dont_exist/i_dont_exist_either/test.csv")

Edit: which is easy

dir.create("i_dont_exist/i_dont_exist_either", recursive = TRUE)