I have a shiny
application in which I want to add the ability to select a folder. This application is used in the local network.
I tried:
#UI library(shiny) shinyUI(fluidPage( actionButton("goButton","Choose folder"), textOutput("session")) ) #server library(shiny) shinyServer(function(input, output, session) { observe({ if(input$goButton > 0){ output$session <- renderText(function(){ list.files(choose.dir())}) } }) })
When I start from my PC, everything works fine, but when other users try to select a folder, a window for selection appears on my PC, not on them.
Is there a way to implement folder selection by other users?