
Get the total size of multiple files.
files_size.Rd
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).
Arguments
- files
A vector of file paths.
- units
The desired file size unit:
'bytes'
(the default),'kb'
,'mb'
, or'gb'
.
Examples
if (FALSE) {
files_size(c("file1.txt", "file2.txt"), units = 'mb')
}