通过VB.NET创建/编辑文本文件

前端之家收集整理的这篇文章主要介绍了通过VB.NET创建/编辑文本文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我如何在VB.NET中编写下面的算法?
Procedure logfile()
{
    if "C:\textfile.txt"=exist then
        open the textfile;
    else
        create the textfile;
    end if  
    go to the end of the textfile;
    write new line in the textfile;
    save;
    close;
}
Dim FILE_NAME As String = "C:\textfile.txt"
Dim i As Integer
Dim aryText(4) As String

aryText(0) = "Mary WriteLine"
aryText(1) = "Had"
aryText(2) = "Another"
aryText(3) = "Little"
aryText(4) = "One"

Dim objWriter As New System.IO.StreamWriter(FILE_NAME,True)

For i = 0 To 4
    objWriter.WriteLine(aryText(i))
Next

objWriter.Close()
MsgBox("Text Appended to the File")

如果在System.IO.StreamWriter的构造函数中将第二个参数设置为True,则它将附加到文件(如果已存在),或者如果不存在则创建新文件.

原文链接:https://www.f2er.com/vb/255444.html

猜你在找的VB相关文章