The lib_size
function returns the number of bytes used
by the data library, as stored on disk.
lib_size(x)
x | The data library. |
---|
The size of the data library in bytes as stored on the file system.
Other lib:
is.lib()
,
lib_add()
,
lib_copy()
,
lib_delete()
,
lib_export()
,
lib_info()
,
lib_load()
,
lib_path()
,
lib_remove()
,
lib_replace()
,
lib_sync()
,
lib_unload()
,
lib_write()
,
libname()
,
print.lib()
# Create temp directory tmp <- tempdir() # Create library libname(dat, tmp) # Add some data to library lib_add(dat, mtcars) lib_add(dat, iris) # Check size of library lib_size(dat) # [1] 9757 # Clean up lib_delete(dat)