Can files be uploaded to server using the shinyFiles package? I'm looking for similar functionality to the standard fileInput from the shiny package. The closest thing I could find in shinyFiles:
app.r
library(shiny) library(shinyFiles) server <- function(input, output, session) { shinyFileSave(input, 'save', session=session, roots=c(wd='.')) } ui <- bootstrapPage(shinySaveButton('save', 'Save', 'Save as...')) shinyApp(ui=ui,server=server) But this only allows me to browse the server files (not local) and even when I save I don't see the file created.