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 Dec. 18, 2020, 10:40 a.m.