Hello All,
I am trying to copy the contents of one file to another file line by line, but full content not copied..pls help
Regards,
Jithen
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Aug 1, 2014, 7:04 AM
using(StreamWriter sw = new StreamWriter(toFile))
with this:
using(StreamWriter sw = new StreamWriter(toFile, true))
VulpesPosted Aug 1, 2014, 6:58 AM