FILELEN.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <io.h>
  3. #include <fcntl.h>
  4. #include <sysstat.h>
  5. void main (int argc, char *argv[])
  6.  {
  7.    int file_handle;
  8.    long file_size;
  9.    if ((file_handle = open(argv[1], O_RDONLY)) == -1)
  10.      printf("Error opening the file %dn", argv[1]);
  11.    else
  12.      {
  13.        file_size = filelength(file_handle);
  14.        printf("The file size in bytes is %ldn", file_size);
  15.        close(file_handle);
  16.      }
  17.  }