findPDF {findR} | R Documentation |
Find PDF files by content with pattern matching
Description
findPDF
scans all directories and subdirectories of a given path for PDF files (.pdf) containing
a specific pattern. Hits can be copied to a new folder.
Usage
findPDF(path = ".", pattern = "Hello World", case.sensitive = TRUE,
show.results = TRUE, copy = FALSE, folder = "findPDF",
overwrite = TRUE)
Arguments
path |
a character vector, path to be scanned. The default corresponds to the working directory, getwd(). |
pattern |
a pattern (regular expression) to search for. |
case.sensitive |
a logical value. If |
show.results |
a logical value. If |
copy |
a logical value. If |
folder |
a character vector, path or name of new folder to copy matching PDF files to. |
overwrite |
a logical value. If |
Examples
# Find all PDF files in the package folder that contain the name Hanna
findPDF(path = system.file(package = "findR"), pattern = "Hanna")
# Save results in a data frame and show hits
dt <- findPDF(path = system.file(package = "findR"), pattern = "Hanna", show.results = TRUE)
dt
[Package findR version 0.2.1 Index]