开发者

How can I extend the length of a memory-mapped file?

开发者 https://www.devze.com 2023-04-12 22:34 出处:网络
In Delphi 7, I open a file with CreateFileMapping then get a pointer by using MapViewOfFile. How can I expand the memory and add some characters to the memory and have it saved to that file?

In Delphi 7, I open a file with CreateFileMapping then get a pointer by using MapViewOfFile.

How can I expand the memory and add some characters to the memory and have it saved to that file?

I have already opened the file with appropriate modes (fmOpenReadWrite, PAGE_READWRITE), and if I overwrite the charact开发者_C百科ers, it gets saved to the file, but I need to add extra values in the middle of the file.


If the file mapping is backed by an actual file and not a block of memory, then you can resize the file in one of two ways:

  1. call CreateFileMapping() with a size that exceeds the current file size. The file will be resized to match the new mapping.

  2. use SetFilePointer() and SetEndOfFile() to resize the file directly, then call CreateFileMapping() with the new size.

Both conditions are described in the documentation for CreateFileMapping().


You cannot resize file mapping created with CreateFileMapping when it's already created. See earlier discussion on the topic: Windows: Resize shared memory .

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号