Home  >  Q&A  >  body text

如何用C++修改文件的内容

我想实现对已有文件中的部分内容的修改,比如文件中的"abcdef"我想修改为"cbadef",其余位置的文件内容不做更改,并且将结果存到原文件中,请问应该如何操作?

PHPzPHPz2765 days ago610

reply all(2)I'll reply

  • 高洛峰

    高洛峰2017-04-17 13:49:18

    1. Just rewrite it, it will overwrite the original

    2. every time
    3. Use the lseek(int filedes, off_t offset, int whence) function to operate with the offset of the file pointer

    reply
    0
  • 阿神

    阿神2017-04-17 13:49:18

    To overwrite without changing the file length, just lseek directly

    reply
    0
  • Cancelreply