Foxhole Atheist
Thursday, December 20, 2012
Array of Bytes to File
easy method
using (System.IO.FileStream _FileStream = new System.IO.FileStream(@"C:\blah\blah.csv", System.IO.FileMode.Create, System.IO.FileAccess.Write))
{
_FileStream.Write(bytesarray, 0, bytesarray.Length);
_FileStream.Close();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment