In shiny, you can use the
fileInput
with the parametermultiple = TRUE
to enable you to upload multiple files at once. But how do you process those multiple files in shiny and consolidate into a single dataset?The bit we need from shiny is the
input$param$fileinputpath
value.
Read the whole thing.