cpp_files {decor}R Documentation

'C++' files from a package

Description

'C++' files from a package

Usage

cpp_files(pkg = ".")

Arguments

pkg

The path to a package's root directory.

Value

A character vector of 'C++' files found in the package, ordered according to the C locale, for stability across different sessions and platforms.

Examples

# 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)

[Package decor version 1.0.2 Index]