#' This function is used to move files to other locations.
#'
#' @param from The current path to the file.
#' @param to The path to the new location of the file.
#' @return nothing to return
#' @examples
#' \dontrun{fileMove("ReferenceFiles/GSE74251.csv","ReferenceFiles/GSE74251Moved.csv")}
fileMove <- function(from, to) {
todir <- dirname(to)
if (!isTRUE(file.info(todir)$isdir)) dir.create(todir, recursive=TRUE)
file.rename(from = from, to = to)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.