File size upload limit in R shiny?

can the user upload file size upto 3 Gb in the shiny browser?

you can let them try by putting this at the top of your script

options(shiny.maxRequestSize = 3000*1024^2)
3 Likes