filenames: Filenames from paths

Description Usage Arguments See Also Examples

View source: R/filenames.R

Description

This function takes a character vector of paths and returns just the file name, by default without the extension. A TextReuseCorpus uses the paths to the files in the corpus as the names of the list. This function is intended to turn those paths into more manageable identifiers.

Usage

1
filenames(paths, extension = FALSE)

Arguments

paths

A character vector of paths.

extension

Should the file extension be preserved?

See Also

basename

Examples

1
2
3
paths <- c("corpus/one.txt", "corpus/two.md", "corpus/three.text")
filenames(paths)
filenames(paths, extension = TRUE)

textreuse documentation built on July 8, 2020, 6:40 p.m.