Nothing
#' Replacement for \code{list.files()}
#'
#' This function is a slightly friendlier version of \code{\link[base]{list.files}} in that it automatically includes the \code{full.names=TRUE} argument.
#' @param x Path name of folder containing files to list.
#' @param ... Arguments to pass to \code{list.files} (other than \code{full.names}).
#' @return Character.
#' @seealso \code{\link[base]{list.files}}
#' @examples
#' # list files in location where R is installed
#' listFiles(R.home())
#' listFiles(R.home(), pattern='README')
#' @export
listFiles <- function(x, ...) base::list.files(path=x, full.names=TRUE, ...)
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.