Skip to contents

Removes cached Font Awesome fonts to free up space or force re-download.

Usage

clear_font_cache_dir(confirm = TRUE)

Arguments

confirm

(logical(1)) Whether to ask for confirmation before deleting cached files. (default: TRUE)

Value

(logical(1)) TRUE if cache was cleared successfully, FALSE otherwise.

Examples

if (FALSE) { # \dontrun{
# Clear font cache
clear_font_cache_dir()

# Clear without confirmation
clear_font_cache_dir(confirm = FALSE)
} # }