stripPath: Remove the path from a vector of filenames

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/stripPath.R

Description

Remove the path from a vector of filenames

Usage

1
stripPath(vec)

Arguments

vec

Character vector (usually containing filenames)

Details

Assumes paths are delineated using forward slashes. If an NA is supplied, then an NA is returned. If the desired string doesn't exist (see examples below), a "" is returned.

Value

Character vector with leading path removed from the filenames

Author(s)

Landon Sego

See Also

Additional functions for filename manipulations: stripExtension, getExtension, getPath, grabLast, basename, dirname

Examples

1
2
3
4
5
6
7
8
stripPath(c(a = "this.good.path/filename.R", b = "nopath.R", c = "/", d = NA,
            e = "only.paths.1/only.paths.2/", ""))

# An example with 'real' files
files <- dir(file.path(path.package(package = "Smisc"), "data"), full.names = TRUE)
print(files)
stripPath(files)
stripPath(stripExtension(files))

pnnl/Smisc documentation built on Oct. 18, 2020, 6:18 p.m.