美文网首页
c++ ifstream 读写模式

c++ ifstream 读写模式

作者: 送分童子笑嘻嘻 | 来源:发表于2020-03-17 15:02 被阅读0次

    os :: app打开要附加的输出文件。
    ios :: ate打开一个现有文件(输入或输出)并寻找结尾。
    ios :: in打开一个输入文件。 使用ios :: in作为ofstream文件的open_mode,以防止截断现有文件。
    ios :: out打开一个输出文件。 当您将ios :: out用于没有ios :: app,ios :: ate或ios :: in的ofstream对象时,则意味着ios :: trunc。
    ios :: nocreate仅在文件已经存在时打开它; 否则,操作将失败。
    ios :: noreplace仅在文件不存在时打开文件;否则,打开文件。 否则,操作将失败。
    ios :: trunc打开一个文件并删除旧文件(如果已经存在)。
    ios :: binary以二进制模式(默认为文本模式)打开文件。

    相关文章

      网友评论

          本文标题:c++ ifstream 读写模式

          本文链接:https://www.haomeiwen.com/subject/zrytyhtx.html