Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to get the file size in Linux

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

I believe many inexperienced people don't know what to do about how to get the file size in Linux. Therefore, this article summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

Code implementation:

Unsigned long get_file_size (const char * filename) {unsigned long size; FILE* fp= fopen (filename, "rb"); if (fp==NULL) {printf ("ERROR: Open file% s failed.\ n", filename); return 0;} fseek (fp, SEEK_SET, SEEK_END); size=ftell (fp); fclose (fp); return size Unexpectedly, after the execution of the program, it was found that some files could get the size correctly, while some files could not get the file size correctly, checked the code, and found nothing wrong. However, a problem has been found in this process, that is, the files that can get the size correctly are relatively small files, while the ones that go wrong are very large files. So think of whether it is because the standard C file operation function does not support files of more than a certain size, so Google for a while, did not expect that the guess is correct, the standard C file operation function does not support more than 2G files to read.

The problem has been found, and it seems that there is only another way to achieve it, because some functions of standard C are rarely used, so we have to turn to Google. After reading a lot of reference articles on the Internet, we found that calling the stat function can correctly get the status information of the super-large file (including the file size, of course), so the following code is implemented:

Unsigned long get_file_size (const char * filename) {struct stat buf; if (stat (filename, & buf))

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report