Nothing
# Interactive tcltk::tcl-TK directory choosing
tk.folder = function(
title = "Choose a directory",
mustexist = TRUE,
mandatory = TRUE
)
{
# Dialog
suppressWarnings(folder <- tcltk::tclvalue(tcltk::tkchooseDirectory(title=title, mustexist=mustexist)))
# No folder
if(mandatory && folder == "") stop("No directory selected")
return(folder)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.