Return whether the filesystem supports sequential write
Source:R/RcppExports.R
vsi_supports_seq_write.Rdvsi_supports_seq_write() returns whether the filesystem supports
sequential write.
Wrapper for VSISupportsSequentialWrite() in the GDAL API.
Note
The location GDAL uses for temporary files can be forced via the
CPL_TMPDIR configuration option.
Examples
# Requires GDAL >= 3.6
if (gdal_version_num() >= gdal_compute_version(3, 6, 0))
vsi_supports_seq_write("/vsimem/test-mem-file.gpkg", TRUE)
#> [1] TRUE