T
Tony Johansson
Hi!
If I use a filestream connected to a data storage like this program example
shown here. The data will be written to the data storage when the internal
buffer is full. So I just wonder what size is it on the internal buffer ?
I mean the actual write to the data storage will be done in chunks of some
size to increase the performance.
string overview = "Most commercial applications, such as...";
FileInfo fileStore = new FileInfo("Overview.txt");
FileStream conduit = fileStore.Create();
byte[] encodedOverview = new UTF8Encoding(true).GetBytes(overview);
conduit.Write(encodedOverview, 0, encodedOverview.Length);
conduit.Close();
//Tony
If I use a filestream connected to a data storage like this program example
shown here. The data will be written to the data storage when the internal
buffer is full. So I just wonder what size is it on the internal buffer ?
I mean the actual write to the data storage will be done in chunks of some
size to increase the performance.
string overview = "Most commercial applications, such as...";
FileInfo fileStore = new FileInfo("Overview.txt");
FileStream conduit = fileStore.Create();
byte[] encodedOverview = new UTF8Encoding(true).GetBytes(overview);
conduit.Write(encodedOverview, 0, encodedOverview.Length);
conduit.Close();
//Tony