C language file operation analysis detailed explanation and example code

黄舟
Release: 2016-12-14 17:25:14
Original
1308 people have browsed it

C Language File Operation Analysis

In addition to open operations and read and write operations, there are several more common operations in file operations. The functions involved in these operations are introduced below.

1. Functions to move the position pointer

rewind function and fseek function, the prototypes of these two functions are:

void rewind(FILE *fp); Move the position pointer to the beginning of the file

int fseek(FILE *fp ,long int offset,int origin); Move the position pointer to the offset number of bytes from origin. For the parameters in the fseek function, origin is the starting point, and offset is the offset bytes from origin. There are three values for origin: SEEK_SET(0 )—>The beginning of the file, SEEK_CUR(1)—>The current position, SEEK_END(2)—>The end of the file.

Note: 1) If the file is opened in append mode, these two functions will not work when writing. No matter where the position pointer is moved, the added data will always be appended to the end of the file.

2. Other commonly used functions

1. ftell function

long int ftell(FILE *fp);

Calculate the number of bytes from the current position pointer to the beginning of the file. If an error occurs, -1L is returned.

Use the ftell function to calculate the file size.

2.feof function

int feof(FILE *fp);

Detects whether the current position pointer reaches the end of the file. If it reaches the end of the file, it returns a non-zero value, otherwise it returns 0.

3.ferror function

int ferror(FILE *fp);

Detects whether there is an error during the file operation. If an error occurs, it returns a non-zero value, otherwise it returns 0

4.remove function

int remove( const char *filename);

Delete the file. If the deletion is successful, return 0, otherwise return a non-zero value

5.rename function

int rename(const char *oldname, const char *newname);

Replace the file Rename, return 0 if the rename is successful, otherwise return a non-zero value.

6.freopen function

FILE* freopen(const char *filename,const char *mode,FILE *stream);

implements redirected input and output. This function is often used when testing data.

7.fclose function

int fclose(FILE *stream);

Closes a stream. If successful, it returns 0, otherwise it returns -1. Note that the stream must be closed after each operation on the file, otherwise it may cause data lost.

Test program:

#include #include int main(void) { freopen("input.txt","r",stdin); freopen("output.txt","w+",stdout); int i; int a[10]; for(i=0;i<10;i++) { scanf("%d",&a[i]); } for(i=0;i<10;i++) { printf("%d\n",a[i]); } return 0; }
Copy after login

Assume input.txt already exists in the project directory, and the data in the file is 1 2 -1 3 4 5 7 8 9 10. After running, there is no need to input data from the console. The program reads data directly from input.txt, and then outputs the results to output.txt, without directly outputting the results to the console.

Thanks for reading, I hope it can help everyone. For more related articles, please pay attention to the PHP Chinese website (m.sbmmt.com)!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!