ChenGen

一切归零,重新开始
随笔 - 13, 文章 - 10, 评论 - 21, 引用 - 0
数据加载中……

C++ 文件操作

文件输出:
std::ofstream ofile("fileName");

追加到现有文件:
std::ofstream ofile("fileName",std::ios::app);

open() put() tellp() close()
std::ofstream ofile;
ofile.open(
"fileName",std::ios::binary);
if(!ofile.fail()){
    ofile.put(
65);
}

ofile.close();

posted on 2006-12-23 10:45 ChenGen 阅读(314) 评论(0)  编辑  收藏 所属分类: C++


只有注册用户登录后才能发表评论。


网站导航: