C++ Read File function

 

#include < string >
using   namespace  std;
string  ReadFile( string  fileName)
{
   
string  all_contents;
   FILE 
* file = fopen(fileName.c_str(), " r " );
   
char  c = fgetc(file);
   
while  (c != EOF)
   {
    all_contents
+= c;
    c
= fgetc(file);
   }
    fclose(file);
    
return  all_contents;
Posted on 2010-02-11 12:29 邹敏 阅读(562) 评论(0)   编辑  收藏 引用

你可能感兴趣的:(C++ Read File function)