Check if there are unusually small or unusually big files

nwd_clean_files(
  min_size = 0,
  max_size = 1e+08,
  remove_exceeding = FALSE,
  language = NULL
)

Arguments

min_size

Minimum size in bytes, defaults to 0 (only files of size 0 are selected).

max_size

Maximum size in bytes, defaults to about 100 megabytes.

remove_exceeding

Logical, defaults to FALSE. If TRUE, listed files are removed.

Value

If remove_exceeding==FALSE, returns a data frame with reference to files exceeding given criteria.

Examples