3
In an application here from work I use the widget below for the user to load a database and it is 'criticized' by another script.
fileInput("file1", "Escolha o arquivo",
multiple = FALSE,
accept = c("text/csv",
"text/comma-separated-values,text/plain",
".csv",".xlsx"))
In another application I need the user to provide the path where the files are to be analyzed. I know I can change the parameter multiple = TRUE
and will work similar to what I want, but would like widget that would ask the path of files!
That’s what I was looking for, I will adapt to my application, thank you very much!
– Flavio Silva