[Help Me] How to write file without overwrite ?

12/27/2015 19:42 harry19939898#1
Dim Path as String = "C.dat"
File.WriteAllBytes("Path", File.ReadAllBytes("A.dat"))
File.WriteAllBytes("Path", File.ReadAllBytes("B.dat"))
12/27/2015 19:45 hazejp#2
Use FileStream instead of the static "File"-methods for writing.
12/28/2015 07:39 harry19939898#3
How to use Filestream ?
I am new
12/28/2015 11:12 YatoDev#4
[Only registered and activated users can see links. Click Here To Register...]
12/28/2015 16:01 harry19939898#5
thnx to replay
solve my problem