如何获取大文件(> 4 GB)的文件大小?

发布于 2024-09-01 02:13:09 字数 156 浏览 8 评论 0原文

当文件大小大于4gb时,如何在C中获取文件的大小?

ftell 返回 4 字节有符号长整型,将其限制为两个字节。 stat 有一个 off_t 类型的变量,也是 4 个字节(不确定符号),所以它最多可以告诉我 4gb 文件的大小。

如果文件大于 4 GB 怎么办?

How can I get the file size of a file in C when the file size is greater than 4gb?

ftell returns a 4 byte signed long, limiting it to two bytes. stat has a variable of type off_t which is also 4 bytes (not sure of sign), so at most it can tell me the size of a 4gb file.

What if the file is larger than 4 gb?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

流心雨 2024-09-08 02:13:09

在使用 glibc 的 Linux 上,ftell 返回一个 off_t;根据标志 off_t 可能是 32 位,也可能是 64 位。

在 Linux 上,您可以通过执行 getconf LFS_CFLAGS(LFS 代表大文件支持)来获取适当的标志以拥有 64 位 off_t

On Linux with glibc, ftell returns an off_t; depending on the flags off_t may be 32 bit or may be 64 bit.

On Linux, you can get the appropriate flags to have a 64 bit off_t by doing getconf LFS_CFLAGS (LFS stands for large-file-support).

全部不再 2024-09-08 02:13:09

在 Windows 上,您使用的是 GetFileSize[Ex]

On Windows, GetFileSize[Ex] is what you use.

秋日私语 2024-09-08 02:13:09

尝试一下

#define _LARGEFILE64_SOURCE 1
#define _FILE_OFFSET_BITS 64

,我认为在某些操作系统上将 off_t 的大小增加到 64 位

try

#define _LARGEFILE64_SOURCE 1
#define _FILE_OFFSET_BITS 64

i think that increases the size of off_t to 64 bits on some operating systems

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