mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-04 11:44:59 -05:00
5 lines
252 B
Markdown
5 lines
252 B
Markdown
We can add a file upload input in the UI using the function `fileInput()`,
|
|
e.g. `fileInput('foo')`. In `server.R`, we can access the uploaded files via
|
|
`input$foo`. See [the
|
|
tutorial](http://rstudio.github.io/shiny/tutorial/#uploads) for more details.
|