R/get_all_song_filenames.R

Defines functions get_all_song_filenames

Documented in get_all_song_filenames

#' Get all the songs' filenames
#' @export
get_all_song_filenames <- function() {
  list.files(
    path = system.file("extdata", package = "k3reviews"),
    pattern = "*.md",
    full.names = TRUE,
    recursive = FALSE
  )
}
richelbilderbeek/k3reviews documentation built on June 13, 2025, 10:31 a.m.