I can't add any file path such as ../folder/smaller-folder/stuff.RData
or ./folder/smaller folder/stuff.RData
or folder/smaller folder/stuff.RDS
. Any version of the file path returns the same error
Warning in gzfile(file, mode) :
cannot open compressed file 'folder/smaller-folder/stuff.RData', probable reason 'No such file or directory'
Error in gzfile(file, mode) : cannot open the connection
A sample code from https://rstudio-education.github.io/hopr/dataio.html
saveRDS(a, file = "stuff.RDS")
a <- readRDS("stuff.RDS")
What did I miss? Any leads is much appreciated.