如何在 VB 中写入文件中的某一行



我知道如何写入文件,但是,我希望能够写入某一行。我有一个很大的csv文件,有很多行。

我只能写到最后一行(使用 writeline),但我真的很想写 50 行的第 x 行。

我该怎么做?

我不知道

您是否可以写入文件中的特定行,但是如果需要,您可以将行写入列表,然后将列表写入文件

    'Declare your list
    Dim lines As New List(Of String)
    For Each lineToWrite In YourLines
        If toInsert Then
            'In this way you insert a row at the specified index, but this will grow the list not overwrite.
            lines.Insert(indexToInsert, lineToWrite)
        ElseIf toOverwrite Then
            'In this way you overwrite the item at the specified index
            lines(indexToOverwrite) = lineToWrite
        Else
            'Or you can just append it
            lines.Add(lineToWrite)
        End If
    Next
    'This will write the file
    System.IO.File.WriteAllLines("c:yourfile.txt", lines.ToArray())

相关内容

  • 没有找到相关文章

最新更新