FileMode.Open and FileMode.OpenOrCreate difference when file exists? c# bug?

懵懂的女人 提交于 2019-11-26 23:06:30
sszarek

I have just reproduced that issue. As I wrote in comment.

FileMode.Open erases contents of the file while FileMode.OpenOrCreate does not.

It seems that new content of the file is one char shorter than previous that's why you see ">" at the end.

If you are writing the file use FileMode.Create that should do for you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!