Learn R Programming

gdalraster (version 1.11.1)

vsi_get_disk_free_space: Return free disk space available on the filesystem

Description

vsi_get_disk_free_space() returns the free disk space available on the filesystem. Wrapper for VSIGetDiskFreeSpace() in the GDAL Common Portability Library.

Usage

vsi_get_disk_free_space(path)

Value

Numeric scalar. The free space in bytes (as bit64::integer64

type), or -1 in case of error.

Arguments

path

Character string. A directory of the filesystem to query.

Examples

Run this code
tmp_dir <- file.path("/vsimem", "tmpdir")
vsi_mkdir(tmp_dir)
vsi_get_disk_free_space(tmp_dir)
vsi_rmdir(tmp_dir)

Run the code above in your browser using DataLab