获取文件大小的各种方法

(一)

 

对文件操作时有时获得文件的大小时必要的.下面是获得其大小小的较简单方法.
#include<io.h>   //C
语言头文件

#include<iostream>   //for system();
using namespace std;
int main()
{
  int handle;
  handle = open("test.txt", 0x0100); //open file for read
  long length = filelength(handle); //get length of file
  cout<<"file length in bytes:"<<length<<endl;
  close(handle);
 
  system("pause");
  return 0;
}


 

(二)

 

//Windows API 中的 GetFileSize()获得文件长度
//
假设文件file.txt 在当前目录下
//file.txt
的内容为:123abc
//
关于windows API函数情参考
部分windows API函数MSDN
#include <iostream>
#include <windows.h>   //for windows api
using namespace std;
int main()
{
  //
API函数CreateFile()创建文件句柄

  HANDLE fhadle = CreateFile("file.txt",           //
文件名或路径
                                  0,
                                  0,
                                  0,
                                  OPEN_EXISTING, //
文件存在则打开并读取
                                  0,
                                  0);
  DWORD size = GetFileSize(fhadle,0);
  cout<<"size:"<<size<<endl;
  return 0;
}
//
输出:
size:6

 

//假设文件file.txt存在,且在当前目录下

#include <iostream>
#include <fstream>

using namespace std;
int main(int argc, char* argv[])
{
    ifstream in("file.txt");
    in.seekg(0, ios::end);      //
设置文件指针到文件流的尾部
    streampos ps = in.tellg();  //
读取文件指针的位置
    cout << "File size: " << ps << endl;
    in.close();                 //
关闭文件流
    return 0;
}

 

 

(四)

 

VC中,CFILEGetLength()函数可直接得到大小:

CFile cf;

 // Attempt to open thefile for reading.
 if( !cf.Open( pszFilename, CFile::modeRead ) )
    return( FALSE );

 // Get the size of the file and store
 // in a local variable. .
 DWORD dwSize;
 dwDibSize = cf.GetLength();

 

()
#include <sys/types.h>;
#include <sys/stat.h>;

long
get_filesize(char *filename)
{
    struct stat     f_stat;
    if (stat(filename, &f_stat) == -1) {
        return -1;
    }
    return (long)f_stat.st_size;
}

()

int main(void)
{
   struct stat statbuf;
   FILE *stream;

   /* open a file for update */
   if ((stream = fopen(FILENAME, "w+")) == NULL)
   {
      fprintf(stderr, "Cannot open output file./n");
      return(1);
   }

   /* get information about the file */
   stat(FILENAME, &statbuf);

   fclose(stream);

   /* display the information returned */
   if (statbuf.st_mode & S_IFCHR)
      printf("Handle refers to a device./n");
   if (statbuf.st_mode & S_IFREG)
      printf("Handle refers to an ordinary file./n");
   if (statbuf.st_mode & S_IREAD)
      printf("User has read permission on file./n");
   if (statbuf.st_mode & S_IWRITE)
      printf("User has write permission on file./n");

   printf("Drive letter of file: %c/n", 'A'+statbuf.st_dev);
   printf("Size of file in bytes: %ld/n", statbuf.st_size);
   printf("Time file last opened: %s/n", ctime(&statbuf.st_ctime));

   return 0;
}

()

#include <sys/stat.h>;
#include <string.h>;
#include <stdio.h>;
#include <fcntl.h>;
#include <io.h>;

int main(void)
{
    int handle;
    char msg[] = "This is a test";
    char ch;

    /* create a file */
    handle = open("TEST.$$$", O_CREAT | O_RDWR, S_IREAD | S_IWRITE);

    /* write some data to the file */
    write(handle, msg, strlen(msg));

    /* seek to the beginning of the file */
    lseek(handle, 0L, SEEK_SET);

    /* reads chars from the file until we hit EOF */

    do
    {
       read(handle, &ch, 1);
       printf("%c", ch);
    }  while (!eof(handle));

    close(handle);
    return 0;
}

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值