[Help Me] How to write file without overwrite ?

12/27/2015 18: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 18:45 hazejp#2
Use FileStream instead of the static "File"-methods for writing.
12/28/2015 06:39 harry19939898#3
How to use Filestream ?
I am new
12/28/2015 10:12 YatoDev#4
[Only registered and activated users can see links. Click Here To Register...]
12/28/2015 15:01 harry19939898#5
thnx to replay
solve my problem