Skip to content

Instantly share code, notes, and snippets.

@srvanderplas
Created December 13, 2018 16:04
Show Gist options
  • Save srvanderplas/ed0053dbe4104c930f9edc3ce161fe17 to your computer and use it in GitHub Desktop.
Save srvanderplas/ed0053dbe4104c930f9edc3ce161fe17 to your computer and use it in GitHub Desktop.
Tiny Shiny App for checking path issues
shinyApp(ui = fluidPage(textOutput("pwd")),
server = function(input, output) {
output$pwd <- renderText(list.files(here::here()))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment