This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs. |
Change the current position of a stream
#include <stdio.h> int fseek( FILE* fp, long offset, int whence ); int fseeko( FILE* fp, off_t offset, int whence );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The fseek() function changes the current position of the stream specified by fp. This position defines the character that will be read or written by the next I/O operation on the file.
The fseek() function clears the end-of-file indicator, and undoes any effects of the ungetc() function on the stream.
You can use ftell() to get the current position of the stream before changing it. You can restore the position by using the value returned by ftell() in a subsequent call to fseek() with the whence parameter set to SEEK_SET.
0 for success, or nonzero if an error occurs.
If an error occurs, errno is set to indicate the type of error.
Determine the size of a file, by saving and restoring the current position of the file:
#include <stdio.h> #include <stdlib.h> long filesize( FILE *fp ) { long int save_pos; long size_of_file; /* Save the current position. */ save_pos = ftell( fp ); /* Jump to the end of the file. */ fseek( fp, 0L, SEEK_END ); /* Get the end position. */ size_of_file = ftell( fp ); /* Jump back to the original position. */ fseek( fp, save_pos, SEEK_SET ); return( size_of_file ); } int main( void ) { FILE *fp; fp = fopen( "file", "r" ); if( fp != NULL ) { printf( "File size=%ld\n", filesize( fp ) ); fclose( fp ); return EXIT_SUCCESS; } return EXIT_FAILURE; }
fseek() is ANSI, POSIX 1003.1; fseeko() is POSIX 1003.1
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
errno, fgetpos(), fopen(), fsetpos(), ftell()