filesize: filesize

filesizeR Documentation

filesize

Description

Returns size of a file as reported by the file system (the file is not scanned).

Usage

Sys.filesize(filename)

Sys.dirsize(dirname)

Arguments

filename, dirname

Location of the file/directory (as a string).

Details

All of the C-level source code for these methods (in src/meminfo of the root directory of the memuse source tree) is licensed under the permissive 2-Clause BSD license.

Value

A memuse class object.

Examples

## Not run: 
library(memuse)

x <- rnorm(1e5)
memuse(x) ### size in ram

tmp <- tempfile()
saveRDS(x, file=tmp)
Sys.filesize(tmp) ### size on disk
unlink(tmp)

## End(Not run)


memuse documentation built on Feb. 16, 2023, 6:36 p.m.