On mardi 21 juillet 2020 04:19:54 CEST MRRAJESH wrote: > Developers, > Below is the GDALVectorTranslate C++ code. I am clearing the vsibuf with > VSIUnlink. But still memory is not vanished. Do we need to call any other > methods?
I suspect you use the MVT driver here ? In which case it will output a hierarchy of files. VSIUnlink() just removes one single file, which is not appropriate then. Use VSIRmdirRecursive() instead Even -- Spatialys - Geospatial professional services http://www.spatialys.com
_______________________________________________ gdal-dev mailing list [email protected] https://lists.osgeo.org/mailman/listinfo/gdal-dev
