Lists files available in a specific archive snapshot using the manifest.
This provides immutable, reproducible file references.
Usage
list_calcofi_files(date = "latest", bucket = "public", path = NULL)
Arguments
- date
Date string in format "YYYY-MM-DD_HHMMSS" or "latest" (default)
- bucket
Bucket type: "public" or "private" (default: "public")
- path
Optional path filter (e.g., "swfsc.noaa.gov/calcofi-db")
Value
Data frame of files from the manifest
Examples
if (FALSE) { # \dontrun{
files <- list_calcofi_files()
files <- list_calcofi_files(path = "swfsc.noaa.gov/calcofi-db")
files <- list_calcofi_files("2026-02-01_143059", "public")
} # }