In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article introduces the relevant knowledge of "C language file operation analysis". In the operation of actual cases, many people will encounter such a dilemma. Next, let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
Random reading and writing of files
The previous function can only read and write sequentially, while random read and write requires the fseek function to locate the file pointer according to the location and offset of the file pointer.
Fseek function
Int fseek (FILE* stream, long int offset, int origin)
Return value: if 0 is returned successfully, a non-0 value is returned.
Parameter: stream is the file pointer and offset is the offset. Origin is the starting position, and there are three types of SEEK_SET (the location at the beginning of the file), SEEK_END (the location at the end of the file), and SEEK_CUR (the current position of the file pointer).
Example: hello world is put in the test.txt file
Ftell function
Long int ftell (FILE* stream)
Returns the offset of the file pointer from the starting position
Rewind function
Void rewind (FILE* stream)
Let the pointer of the file return to the starting position of the file
File end decision
1. Whether the reading of the text file is finished, and determine whether the return value is EOF or NULL
For example, fgetc judges EOF and fgets judges NULL
EOF or NULL is returned when reading fails and when the file ends.
two。 The reading end of the binary file is judged to determine whether the return value is less than the actual number to be read.
For example, fread determines whether the returned value is less than the actual number to be read.
When the file reading ends, use the ferror function and the feof function to check whether the reason for the end of the file reading is the end of the read failure or the end of the file.
Feof function and ferror function
Int feof (FILE* stream)
Returns a non-zero value if the end of the EOF read is encountered, otherwise 0 is returned.
Int ferror (FILE* stream)
If a read error occurs, a non-zero value is returned, otherwise 0.
Example of determining the end of a text file:
This is the end of the content of "C language File Operation Analysis". Thank you for your reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
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: 203
*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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.