演示版本
VS2012
- filelength()函数
filelength()函数用于统计由open()所打开文件的字节数。
语法
int filelength(int handle);
filelength()函数的语法参数说明如下:
参数handle为要统计的文件句柄。
filelength()函数返回打开文件的长度。
示例
#include <io.h> #include <fcntl.h> #include <stdio.h> int main() { int file; long length; FILE *fp; fp = fopen("d:\\1\\1\\1.txt", "r"); file = _dup(_fileno(fp)); length = _filelength(file); printf("%ld\n", length); fclose(fp); }
阿飞
2021年8月3日