<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Mark Scerri - Eye on the web</title>
	<atom:link href="http://markscerri.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://markscerri.com</link>
	<description></description>
	<lastBuildDate>Fri, 05 Feb 2010 22:06:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on C# .NET Tutorial 5: Navigating the File System by Joshua M. Andrews</title>
		<link>http://markscerri.com/2009/01/02/c-net-tutorial-5-navigating-the-file-system/#comment-47</link>
		<dc:creator>Joshua M. Andrews</dc:creator>
		<pubDate>Fri, 05 Feb 2010 22:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=126#comment-47</guid>
		<description>Thank you for the suggestion.  I understand what you mean by adding the files to a &quot;queue&quot; or List but the problem IS the processing part.

Is there something more efficient than trying to open the file with a try/catch?</description>
		<content:encoded><![CDATA[<p>Thank you for the suggestion.  I understand what you mean by adding the files to a &#8220;queue&#8221; or List but the problem IS the processing part.</p>
<p>Is there something more efficient than trying to open the file with a try/catch?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial 5: Navigating the File System by scerrimark</title>
		<link>http://markscerri.com/2009/01/02/c-net-tutorial-5-navigating-the-file-system/#comment-46</link>
		<dc:creator>scerrimark</dc:creator>
		<pubDate>Wed, 03 Feb 2010 15:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=126#comment-46</guid>
		<description>Unfortunately you cannot force FileWatcher to wait until the file has finished copying. For your scenario you can do the following. Create a file queue (you can use a List with the names of the files) and a timer. As the FileWatcher tries to process the file and fails (because it is still copying) add the file reference in the created queue. Then every time the timer fires the tick event for each file in the queue you can try to process the file. If this succeeds (therefore the file has finished copying) remove the reference from the queue.</description>
		<content:encoded><![CDATA[<p>Unfortunately you cannot force FileWatcher to wait until the file has finished copying. For your scenario you can do the following. Create a file queue (you can use a List with the names of the files) and a timer. As the FileWatcher tries to process the file and fails (because it is still copying) add the file reference in the created queue. Then every time the timer fires the tick event for each file in the queue you can try to process the file. If this succeeds (therefore the file has finished copying) remove the reference from the queue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial 5: Navigating the File System by Joshua M. Andrews</title>
		<link>http://markscerri.com/2009/01/02/c-net-tutorial-5-navigating-the-file-system/#comment-45</link>
		<dc:creator>Joshua M. Andrews</dc:creator>
		<pubDate>Wed, 03 Feb 2010 15:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=126#comment-45</guid>
		<description>Scenerio:

I have a server with my software installed that does nothing but watch a directory for newly created file.  These files are being copied into the folder over the network by users and average around 50+ mb each.

FileWatcher notices the file coming in and immediately tries to process it before it has finished copying.

My question is, what is the best way to force FileWatcher to wait until the file has finished copying before trying to process the file?</description>
		<content:encoded><![CDATA[<p>Scenerio:</p>
<p>I have a server with my software installed that does nothing but watch a directory for newly created file.  These files are being copied into the folder over the network by users and average around 50+ mb each.</p>
<p>FileWatcher notices the file coming in and immediately tries to process it before it has finished copying.</p>
<p>My question is, what is the best way to force FileWatcher to wait until the file has finished copying before trying to process the file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial 5: Navigating the File System by scerrimark</title>
		<link>http://markscerri.com/2009/01/02/c-net-tutorial-5-navigating-the-file-system/#comment-44</link>
		<dc:creator>scerrimark</dc:creator>
		<pubDate>Wed, 03 Feb 2010 08:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=126#comment-44</guid>
		<description>What type of problem or error are you getting? The few times I used it worked perfectly well.</description>
		<content:encoded><![CDATA[<p>What type of problem or error are you getting? The few times I used it worked perfectly well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial 5: Navigating the File System by Joshua M. Andrews</title>
		<link>http://markscerri.com/2009/01/02/c-net-tutorial-5-navigating-the-file-system/#comment-43</link>
		<dc:creator>Joshua M. Andrews</dc:creator>
		<pubDate>Tue, 02 Feb 2010 20:51:01 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=126#comment-43</guid>
		<description>Excellent post.  I&#039;ve noticed that many people are having a hard time, including myself, with the FileWatcher classes in determining when a file has completed writing before processing it.

Have you found an effecient and reliable way to do so?</description>
		<content:encoded><![CDATA[<p>Excellent post.  I&#8217;ve noticed that many people are having a hard time, including myself, with the FileWatcher classes in determining when a file has completed writing before processing it.</p>
<p>Have you found an effecient and reliable way to do so?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial 8: Working with Isolated Storage by scerrimark</title>
		<link>http://markscerri.com/2009/01/08/c-net-tutorial-8-working-with-isolated-storage/#comment-41</link>
		<dc:creator>scerrimark</dc:creator>
		<pubDate>Thu, 19 Nov 2009 06:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=202#comment-41</guid>
		<description>To be able to use the same IsolatedStorage you need to use IsolatedStorageFile.GetMachineStoreForAssembly method to obtain the isolated storage because essentially it is still the same assembly.</description>
		<content:encoded><![CDATA[<p>To be able to use the same IsolatedStorage you need to use IsolatedStorageFile.GetMachineStoreForAssembly method to obtain the isolated storage because essentially it is still the same assembly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial 8: Working with Isolated Storage by Francesco</title>
		<link>http://markscerri.com/2009/01/08/c-net-tutorial-8-working-with-isolated-storage/#comment-40</link>
		<dc:creator>Francesco</dc:creator>
		<pubDate>Wed, 18 Nov 2009 21:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=202#comment-40</guid>
		<description>Hi!
Nice post.
I&#039;m using IsolatedStorageFile for saving application data.
How can I prevent loosing association to the IsolatedStorageFile if the Assemply will be renamed or moved from the first-run location?

1) c:\Test.exe --&gt; save data
2) renaming c:\Test.exe in c:\Foo.exe
3) Foo.exe neds a new IsolatedStorageFile

Tnx in advance</description>
		<content:encoded><![CDATA[<p>Hi!<br />
Nice post.<br />
I&#8217;m using IsolatedStorageFile for saving application data.<br />
How can I prevent loosing association to the IsolatedStorageFile if the Assemply will be renamed or moved from the first-run location?</p>
<p>1) c:\Test.exe &#8211;&gt; save data<br />
2) renaming c:\Test.exe in c:\Foo.exe<br />
3) Foo.exe neds a new IsolatedStorageFile</p>
<p>Tnx in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial: Introduction by scerrimark</title>
		<link>http://markscerri.com/2008/12/24/c-net-tutorial-introduction/#comment-39</link>
		<dc:creator>scerrimark</dc:creator>
		<pubDate>Thu, 15 Oct 2009 04:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://scerrimark.wordpress.com/?p=22#comment-39</guid>
		<description>This notation is used to place variables into a string. For example Console.WriteLine(&quot;My name is {0} and my surname is {1}&quot;, name, surname); In this statement the contents of variable name are replaced instead of {0} and the contents of variable surname will be replaced instead of {1} and so on.</description>
		<content:encoded><![CDATA[<p>This notation is used to place variables into a string. For example Console.WriteLine(&#8220;My name is {0} and my surname is {1}&#8221;, name, surname); In this statement the contents of variable name are replaced instead of {0} and the contents of variable surname will be replaced instead of {1} and so on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial: Introduction by Abhay Bajpai</title>
		<link>http://markscerri.com/2008/12/24/c-net-tutorial-introduction/#comment-38</link>
		<dc:creator>Abhay Bajpai</dc:creator>
		<pubDate>Wed, 14 Oct 2009 15:17:20 +0000</pubDate>
		<guid isPermaLink="false">http://scerrimark.wordpress.com/?p=22#comment-38</guid>
		<description>hello sir,
           my self Abhay Bajpai from India.I&#039;ve completed my BE in computer sci.
         thanks for this tutorial.It is too helpful for improve .net skill. I&#039;ve 
         one queries, that,you use {o},{1},{2} in console.writeline example of 
         structure in tutorial 1. please make understand me fully.thanks</description>
		<content:encoded><![CDATA[<p>hello sir,<br />
           my self Abhay Bajpai from India.I&#8217;ve completed my BE in computer sci.<br />
         thanks for this tutorial.It is too helpful for improve .net skill. I&#8217;ve<br />
         one queries, that,you use {o},{1},{2} in console.writeline example of<br />
         structure in tutorial 1. please make understand me fully.thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# .NET Tutorial 9: Regular Expression in C# by oufaq iqbal</title>
		<link>http://markscerri.com/2009/01/15/c-net-tutorial-9-regular-expression-in-c/#comment-30</link>
		<dc:creator>oufaq iqbal</dc:creator>
		<pubDate>Mon, 06 Jul 2009 12:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://markscerri.com/?p=224#comment-30</guid>
		<description>goood</description>
		<content:encoded><![CDATA[<p>goood</p>
]]></content:encoded>
	</item>
</channel>
</rss>
