Skip to contents

This function takes a vector of file paths and returns the total size of all files combined. File sizes can be reported in different units (bytes, kilobytes, megabytes, gigabytes).

Usage

files_size(files, units = "bytes")

Arguments

files

A vector of file paths.

units

The desired file size unit: 'bytes' (the default), 'kb', 'mb', or 'gb'.

Value

The total size of all files combined.

Examples

if (FALSE) {
files_size(c("file1.txt", "file2.txt"), units = 'mb')
}