Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@joethorley
Last active August 29, 2015 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joethorley/9199214 to your computer and use it in GitHub Desktop.
Save joethorley/9199214 to your computer and use it in GitHub Desktop.
Wrappers to get, remove, replace, add and test file name extensions
library(tools)
library(assertthat)
#' @title Filename extension utilities
#'
#' @description Replaces, adds or removes (rm) extensions from filenames or test whether
#' filename has an extension or is a filename with a particular extension.
#' Functions are primarily wrappers
#' on the tools package functions \code{file_ext} and \code{file_path_sans_ext}.
#'
#' @usage
#' get_ext(x)
#' has_ext(x)
#' is_ext(x, ext)
#' rm_ext(x)
#' replace_ext(x, ext)
#' add_ext(x, ext)
#'
#' @param x a character vector of the filenames.
#' @param ext a character scalar of the extension with or without a leading point.
#' @return A character vector of the extensions or modified filenames or a logical vector
#' indicating whether a filename has an extension or is a particular extension.
#' @seealso \code{\link{file_ext}} and \code{\link{file_path_sans_ext}}
#' @aliases has_ext is_ext rm_ext replace_ext add_ext
#' @examples
#'
#' x <- c("file", "file.txt", "file.txt.zip")
#' get_ext(x)
#' has_ext(x)
#' is_ext(x, "txt")
#' is_ext(x, ".txt")
#' rm_ext(x)
#' replace_ext(x, "md")
#' add_ext(x, "md")
#' @export
get_ext <- function (x) {
file_ext(x)
}
rm_leading_dot <- function (x) {
sub("^[.]", "", x)
}
#' @export
has_ext <- function (x) {
get_ext(x) != ""
}
#' @export
is_ext <- function (x, ext) {
assert_that(is.string(ext))
ext <- rm_leading_dot (ext)
get_ext(x) == ext
}
#' @export
rm_ext <- function (x) {
file_path_sans_ext(x)
}
#' @export
replace_ext <- function (x, ext) {
assert_that(is.string(ext))
ext <- rm_leading_dot (ext)
paste(rm_ext(x), ext, sep = ".")
}
#' @export
add_ext <- function (x, ext) {
assert_that(is.string(ext))
ext <- rm_leading_dot (ext)
paste(x, ext, sep = ".")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment