Efficient way to delete a line from a text file

前端 未结 8 1895
暖寄归人
暖寄归人 2020-11-29 11:09

I need to delete a certain line from a text file. What is the most efficient way of doing this? File can be potentially large(over million records).

UPDATE: below is

8条回答
  •  离开以前
    2020-11-29 12:03

    Move you file to memory using File Mapping, like Think Before Coding did, and made deletions on memory and after write to disk.
    Read this File Read Benchmarks - C#
    C# accessing memory map file

提交回复
热议问题