<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - How do you programatically open a file in c# to append?</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - How do you programatically open a file in c# to append?</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Fri, 24 May 2013 10:22:09 GMT</pubDate>
	<lastBuildDate>Fri, 24 May 2013 10:22:09 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>3</c9:totalResults>
	<c9:pageCount>-3</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - How do you programatically open a file in c# to append?</title>
		<description><![CDATA[<p>How do you programatically open a file in c# to append?</p><p>I tried searching online for an example and so far I have not found anything.</p><p>There is System.IO.StreamWriter and there is System.IO.StreamReader but there is no StreamAppend. Is there some way to use StreamWriter without overwritting the content of the existing file? Is there some way to use System.IO.Stream with some sort of appending criteria?</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-do-you-programatically-open-a-file-in-c-to-append/074bd7faceb840f2beb1a10c00dcc08b#074bd7faceb840f2beb1a10c00dcc08b</link>
		<pubDate>Sat, 17 Nov 2012 13:23:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-do-you-programatically-open-a-file-in-c-to-append/074bd7faceb840f2beb1a10c00dcc08b#074bd7faceb840f2beb1a10c00dcc08b</guid>
		<dc:creator>complete</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/complete/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How do you programatically open a file in c# to append?</title>
		<description><![CDATA[<p>Using intellisense only:</p><p>System.IO.<span>FileStream</span> fs = System.IO.<span>File</span>.Open(<span>&quot;filename&quot;</span>, System.IO.<span>FileMode</span>.Append);</p><p>is one of the many ways you could do it.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-do-you-programatically-open-a-file-in-c-to-append/2cd0249e7c46435c8bfaa10c00e35dbf#2cd0249e7c46435c8bfaa10c00e35dbf</link>
		<pubDate>Sat, 17 Nov 2012 13:47:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-do-you-programatically-open-a-file-in-c-to-append/2cd0249e7c46435c8bfaa10c00e35dbf#2cd0249e7c46435c8bfaa10c00e35dbf</guid>
		<dc:creator>lensman</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/lensman/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How do you programatically open a file in c# to append?</title>
		<description><![CDATA[<p>If you want to use StreamWriter, simply use the <a href="http://msdn.microsoft.com/en-us/library/36b035cb.aspx">StreamWriter(string path, bool append)</a> constructor:</p><p><pre class="brush: csharp">using( StreamWriter writer = new StreamWriter(&quot;filename&quot;, true) )
{
    // Append stuff here.
}</pre></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-do-you-programatically-open-a-file-in-c-to-append/d4598a271b0f49839cbaa10d009ad376#d4598a271b0f49839cbaa10d009ad376</link>
		<pubDate>Sun, 18 Nov 2012 09:23:42 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-do-you-programatically-open-a-file-in-c-to-append/d4598a271b0f49839cbaa10d009ad376#d4598a271b0f49839cbaa10d009ad376</guid>
		<dc:creator>Sven Groot</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Sven Groot/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>