Skip to contents

Deletes cached files within the cached file directory and their query metadata

Usage

clear_cached_files()

Value

No return value; called for side effect of removing files

Examples

if (FALSE) {
# First set caching to true with [galah_config()]
galah_config(caching = TRUE)

# Then create a data query.
# The data you download will be cached in a temporary directory.
dat <- atlas_counts(group_by = galah_group_by(year))

# To clear your cached files directory, use `clear_cached_files()`
clear_cached_files()
}