ファイルが存在するかどうかを確認しようとしていますが、存在する場合は何もしません。ファイルが存在しない場合は、テキストファイルを作成します。次に、そのファイルにテキストを書き込みます。このコードのどこが間違っているのですか?テキストファイルに複数行を書き込もうとしていますが、その部分が機能していません。テキストファイルを作成しています...書き込みを行っていないだけです。
Dim file As System.IO.FileStream
Try
' Indicate whether the text file exists
If My.Computer.FileSystem.FileExists("c:\directory\textfile.txt") Then
Return
End If
' Try to create the text file with all the info in it
file = System.IO.File.Create("c:\directory\textfile.txt")
Dim addInfo As New System.IO.StreamWriter("c:\directory\textfile.txt")
addInfo.WriteLine("first line of text")
addInfo.WriteLine("") ' blank line of text
addInfo.WriteLine("3rd line of some text")
addInfo.WriteLine("4th line of some text")
addInfo.WriteLine("5th line of some text")
addInfo.close()
End Try