I am trying to write some text at the end of the file.
Here is my code
Dim Writer As System.IO.StreamWriter = IO.File.AppendText("D:\Vishal.txt")
Writer.WriteLine("I am Vishal")
But I am not getting anything in the above mentioned file. Also there are no errors in the program.