如何在 C++ 中获取指向文件开头的指针
在C++中是否有可能以某种方式获取指向打开文件开头的指针,以便它(指针)可以与文件大小一起传递给unix write函数?
需要明确的是:我想将整个文件传递给类似写入的函数 - 我该怎么做?
Is it possible in C++ to somehow get a pointer to the beginning of an opened file so that it ( the pointer ) can be passed to the unix write function together with the size of the file?
Just to be clear: I want to pass the whole file to a write-like function - how do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需
mmap()
完整文件,然后然后通过这个指针进行写入。您必须使用open()
打开它,而不是fopen()
。You can just
mmap()
the complete file, and then pass this pointer to write. You'll have to open it using theopen()
, notfopen()
though.sendfile() 专门用于在 POSIX 平台上通过网络发送时的此目的,并且内核会处理复杂的事情。
sendfile() is specifically for this purpose on POSIX platforms when sending over the network, and the kernel handles the intricacies of doing it.