Description Usage Arguments Value Examples
C++ files from a package
1 | cpp_files(pkg = ".")
|
pkg |
The path to a package's root directory. |
A character vector of C++ files found in the package.
1 2 3 4 5 6 7 8 9 10 11 | # Setup
pkg <- tempfile()
dir.create(file.path(pkg, "src"), recursive = TRUE)
file.create(file.path(pkg, "src", "code.c"))
file.create(file.path(pkg, "src", "code.cpp"))
# List the files, only the C++ file will be listed
cpp_files(pkg)
# Cleanup
unlink(pkg, recursive = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.