vsi_unlink | R Documentation |
vsi_unlink()
deletes a file object from the file system.
This function goes through the GDAL VSIFileHandler
virtualization and may
work on unusual filesystems such as in memory.
It is a wrapper for VSIUnlink()
in the GDAL Common Portability Library.
Analog of the POSIX unlink()
function.
vsi_unlink(filename)
filename |
Character string. The path of the file to be deleted. |
0
on success or -1
on an error.
deleteDataset()
, vsi_rmdir()
, vsi_unlink_batch()
# regular file system for illustration
elev_file <- system.file("extdata/storml_elev.tif", package="gdalraster")
tmp_file <- file.path(tempdir(), "tmp.tif")
file.copy(elev_file, tmp_file)
vsi_stat(tmp_file)
vsi_unlink(tmp_file)
vsi_stat(tmp_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.