I have a folder of CSV files and i want to upload and access them as a list of files in shiny. I tried the following code to upload the files.
server: output$sourced <- renderDataTable({
inFile <- input$file1
if (is.null(inFile))
return(NULL)
df <- list.files(inFile$datapath) #, header=input$header, sep=input$sep, quote=input$quote)
})
ui.r: fileInput("file1", "Choose CSV files from directory", multiple = "TRUE",
accept=c('text/csv', 'text/comma-separated-values,text/plain', '.csv')),
Error for folder upload:
invalid 'description' argument
For one file its working fine if i use df <- read.csv(inFile$datapath)
to load a file. But m not able to upload a folder. Help appreciated.