C Cor Ligthert Dec 15, 2004 #2 Kurien, How to append a file with a new file?. Click to expand... Do you mean, how to append a file too an *old* file? There are more possibilities http://msdn.microsoft.com/library/d...tml/frlrfsystemiofileclassappendtexttopic.asp I hope this helps? Cor "Kurien Baker Fenn" .
Kurien, How to append a file with a new file?. Click to expand... Do you mean, how to append a file too an *old* file? There are more possibilities http://msdn.microsoft.com/library/d...tml/frlrfsystemiofileclassappendtexttopic.asp I hope this helps? Cor "Kurien Baker Fenn" .
H Herfried K. Wagner [MVP] Dec 15, 2004 #3 Kurien Baker Fenn said: How to append a file with a new file?. Click to expand... For example: \\\ Dim sw As New StreamWriter(Path:="C:\foo.txt", Append:=True) sw.WriteLine("Hello World!") sw.Close() /// For reading the other file, you can use 'StreamReader'/'BinaryReader'/'FileStream'.
Kurien Baker Fenn said: How to append a file with a new file?. Click to expand... For example: \\\ Dim sw As New StreamWriter(Path:="C:\foo.txt", Append:=True) sw.WriteLine("Hello World!") sw.Close() /// For reading the other file, you can use 'StreamReader'/'BinaryReader'/'FileStream'.