In shiny, you can use the
fileInputwith the parametermultiple = TRUEto 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$fileinputpathvalue.
Read the whole thing.