--- title: "Use file explorer" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Use file explorer} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` ```{r setup} library(servers.tools) ``` # File explorer The file explorer is a RStudio addin. ```{r examples-file_explorer, eval = FALSE} #' \dontrun{ library(shiny) library(shinyFiles) library(shinyTree) # shinyFiles::shinyFilesExample() file_explorer() # Use with custom path cat("test", file = tempfile("custom", fileext = ".R")) file_explorer(path = tempdir()) #' } ```