如何在 C++ 中获取指向文件开头的指针

发布于 2024-08-03 06:18:13 字数 110 浏览 6 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半枫 2024-08-10 06:18:13

您只需 mmap() 完整文件,然后然后通过这个指针进行写入。您必须使用 open() 打开它,而不是 fopen()

You can just mmap() the complete file, and then pass this pointer to write. You'll have to open it using the open(), not fopen() though.

北方。的韩爷 2024-08-10 06:18:13

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文