shiny (version 0.10.0)

fileInput: File Upload Control

Description

Create a file upload control that can be used to upload one or more files. Does not work on older browsers, including Internet Explorer 9 and earlier.

Usage

fileInput(inputId, label, multiple = FALSE, accept = NULL)

Arguments

inputId
Input variable to assign the control's value to.
label
Display label for the control.
multiple
Whether the user should be allowed to select and upload multiple files at once.
accept
A character vector of MIME types; gives the browser a hint of what kind of files the server is expecting.

Details

Whenever a file upload completes, the corresponding input variable is set to a dataframe. This dataframe contains one row for each selected file, and the following columns: [object Object],[object Object],[object Object],[object Object]

See Also

Other input.elements: actionButton, actionLink; animationOptions, sliderInput; checkboxGroupInput; checkboxInput; dateInput; dateRangeInput; numericInput; radioButtons; selectInput, selectizeInput; submitButton; textInput