Removes cached directory data files.
Usage
clear_directory_cache(end_year = NULL)
Arguments
- end_year
Optional year to clear. If NULL, clears all directory cache.
Value
Invisibly returns the number of files removed
Examples
if (FALSE) { # \dontrun{
# Clear all directory cache
clear_directory_cache()
# Clear only 2024 directory cache
clear_directory_cache(2024)
} # }