C++ 读写文件安全又简洁的简单实例分享

—-想了解C++ 读写文件安全又简洁的简单实例分享的全部内容且更多的C语言教程关注<计算机技术网(www.ctvol.com)!!>

C++ 读写文件安全又简洁的简单实例

实例代码:

  #include <string>   #include <iostream>   #include <fstream>      using namespace std;      int get_file_content(string sFileName, string& sFileContent);      int main(int argc, char* argv[])   {     string sFileContent;     get_file_content("./test", sFileContent);     cout << sFileContent << endl;     return 0;   }       int get_file_content(string sFileName, string& sFileContent)   {     ifstream ifs (sFileName.c_str(), ifstream::in);        sFileContent.clear();     char c;       while (ifs.get(c)){       sFileContent.append(1, c);     }        ifs.close();        return 0;   }      int set_file_content(string sFileName, string& sFileContent)   {     ofstream ofs(sFileName.c_str(), ofstream::binary);     size_t nCount = sFileContent.size();     ofs.write (sFileContent.c_str(), nCount);         ofs.close();        return nCount;   }     

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/c-cdevelopment/488150.html

(0)
上一篇 2020年11月12日
下一篇 2020年11月12日

精彩推荐