I suppose my title isn\'t that clear.
I\'ll try to explain:
I can write and read a file using a FileStream
FileStream fs = new FileStream(\"C
If you truncate the stream down to 0, it will also work and no need to calculate the new file size in bytes.
fs.Seek(0,0); fs.SetLength(0);