Press "Enter" to skip to content

Uploading Files In Shiny

Steph Locke explains how to use lapply() and fread() to validate and combine multiple uploaded files in R:

In shiny, you can use the fileInput with the parameter multiple = 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.