如何在 C 语言中获取文件的大小?
让我们创建一个这个问题的补充问题。 在 C++ 中获取文件大小的最常见方法是什么? 在回答之前,请确保它是可移植的(可以在 Unix、Mac 和 Windows 上执行), 可靠、易于理解并且没有库依赖性(没有 boost 或 qt,但例如 glib 就可以,因为它是可移植库)。
Let's create a complementary question to this one.
What is the most common way to get the file size in C++?
Before answering, make sure it is portable (may be executed on Unix, Mac and Windows),
reliable, easy to understand and without library dependencies (no boost or qt, but for instance glib is ok since it is portable library).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
请参阅 http://www.cplusplus.com/doc/tutorial/files/有关 C++ 文件的更多信息。
编辑:这个答案不正确,因为tellg()不一定返回正确的值。请参阅http://stackoverflow.com/a/22986486/1835769
See http://www.cplusplus.com/doc/tutorial/files/ for more information on files in C++.
edit: this answer is not correct since tellg() does not necessarily return the right value. See http://stackoverflow.com/a/22986486/1835769
使用 C++ 文件系统库:
Using the C++ filesystem library:
虽然不一定是最流行的方法,但我听说 ftell、fseek 方法在某些情况下可能并不总是给出准确的结果。具体来说,如果使用已经打开的文件并且需要计算其大小并且它恰好作为文本文件打开,那么它将给出错误的答案。
以下方法应该始终有效,因为 stat 是 Windows、Mac 和 Linux 上 c 运行时库的一部分。
如果您需要对非常大的文件(> 2GB)进行此操作,您可能需要考虑调用
stat64
和fstat64
(如果可用)。While not necessarily the most popular method, I've heard that the ftell, fseek method may not always give accurate results in some circumstances. Specifically, if an already opened file is used and the size needs to be worked out on that and it happens to be opened as a text file, then it's going to give out wrong answers.
The following methods should always work as stat is part of the c runtime library on Windows, Mac and Linux.
If you need this for very large files (>2GB) you may want to look at calling
stat64
andfstat64
if available.也可以使用 fopen()、fseek() 和 ftell() 函数来查找。
It is also possible to find that out using the fopen(),fseek() and ftell() function.
在 C++ 中,您可以使用以下函数,它将返回文件的大小(以字节为单位)。
In c++ you can use following function, it will return the size of you file in bytes.