1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/file_subs_ext.R
\name{file_subs_ext}
\alias{file_subs_ext}
\title{Replace file extension by another file extension}
\usage{
file_subs_ext(fn, new_ext, check = TRUE)
}
\arguments{
\item{fn}{character vector with file names}
\item{new_ext}{character vector of length one with the new extension (when
it does not start with a period a period is added).}
\item{check}{check if the new file name is not equal to the original
filename. If so, generate an error.}
}
\value{
Returns a character vector of the same length of \code{fn} with the
extension of the file names in \code{fn} replaced by \code{new_ext}.
}
\description{
Replace file extension by another file extension
}
|