How to dynamically expand a Memory Mapped File
Once you map a file in memory, you cannot increase its size. This is a known limitation of memory mapped files. …you must calculate or estimate the size of the finished file because file mapping objects are static in size; once created, their size cannot be increased or decreased. One strategy would be to use … Read more