当前位置: C语言 -- 标准库 -- <stdio.h> -- fpos_t

fpos_t类型


描述:

fpos_t类型是一种完整的对象类型,但不是数组类型;fpos_t类型能够记录文件中每个位置所需的所有信息。

fpos_t类型对象通过调用fgetpos函数获取值,其值不能被直接读取;仅可以用作fsetpos函数的参数。


GCC编译器<stdio.h>头文件中fpos_t类型定义如下所示:

#ifdef __MSVCRT__
typedef long long fpos_t;
#else
typedef long	fpos_t;
#endif

范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 
40 
41 
42 
/*类型fpos_t范例*/

#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    FILE *pFile;
    int ch;
    fpos_t pos;

    /*打开文件。*/
    pFile = fopen("gch.txt", "r");
    if(pFile==NULL)
    {
        puts("Fail to open file.");
        exit(EXIT_FAILURE);
    }
    
    /*获取文件位置。*/
    fgetpos(pFile, &pos);

    /*输出文件内容。*/
    while((ch=fgetc(pFile))!= EOF)
        putchar(ch);
    printf("\n");

    /*设置文件位置。*/
    fsetpos(pFile, &pos);
    
    /*输出大写的文件内容。*/
    while((ch=fgetc(pFile))!= EOF)
        putchar(toupper(ch));
    printf("\n");

    /*关闭文件。*/
    fclose(pFile);
    
    return 0;
}


结果:

假设gch.txt文件的内容为Where there is a will, there is a way.,将输出:

Where there is a will, there is a way.

WHERE THERE IS A WILL, THERE IS A WAY.


相关内容:
fgetpos 获取流位置和解析状态当前值的函数。
fsetpos 设置流位置和mbstate_t对象的函数。