| set.file.extension {RSAGA} | R Documentation |
Determine or modify file name extensions
Description
Function get.file.extension determines the file extension, set.file.extension changes it, and default.file.extension changes it only if it is not already specified.
Usage
set.file.extension(filename, extension, fsep = .Platform$file.sep)
get.file.extension(filename, fsep = .Platform$file.sep)
default.file.extension(filename, extension, force = FALSE)
Arguments
filename |
character vector: file name(s), possibly including paths and extensions; a file name ending with a |
extension |
character string: file extension, without the dot |
fsep |
character: separator between paths |
force |
logical argument to |
Value
character vector of same length as filename
Examples
fnm = c("C:/TEMP.DIR/temp","C:/TEMP.DIR/tmp.txt","tempfile.")
get.file.extension(fnm)
set.file.extension(fnm,extension=".TMP")
default.file.extension(fnm,extension=".TMP")
[Package RSAGA version 1.4.0 Index]