本文介绍了如何在server.mappath中写入现有文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以使用以下方法在Server.MapPath(file.xml)中写入现有文件:

Is it possible to write over an existing file in Server.MapPath(file.xml) using:

using (FileStream fsAppend = new FileStream(Server.MapPath("file1.xml"), FileMode.Append, FileAccess.Write))
{
   StreamWriter sw = new StreamWriter(fsAppend);
   ???
}



或者以某种方式使用FileMode.Truncate?然后FileMode.Create?



我尝试过:



FileMode 。如果我找出语法,似乎要走了。我根本不想尝试FileMode.Truncate。


Or somehow using FileMode.Truncate?? then FileMode.Create?

What I have tried:

FileMode.Append seems the way to go if I figure out the Syntax. I do not want to even try FileMode.Truncate at all.

推荐答案


这篇关于如何在server.mappath中写入现有文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 23:36