<?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 on: challenge #4, listing files recursively with Ruby</title>
	<atom:link href="http://benjaminbaka.wordpress.com/2008/02/16/challenge-4-listing-files-recursively-with-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://benjaminbaka.wordpress.com/2008/02/16/challenge-4-listing-files-recursively-with-ruby/</link>
	<description>The sky is not the limit</description>
	<lastBuildDate>Thu, 02 Oct 2008 17:26:20 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Whatcha McCallum</title>
		<link>http://benjaminbaka.wordpress.com/2008/02/16/challenge-4-listing-files-recursively-with-ruby/#comment-55</link>
		<dc:creator>Whatcha McCallum</dc:creator>
		<pubDate>Fri, 05 Sep 2008 20:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/2008/02/16/challenge-4-listing-files-recursively-with-ruby/#comment-55</guid>
		<description>try
p Dir[&#039;**/*.*&#039;]</description>
		<content:encoded><![CDATA[<p>try<br />
p Dir['**/*.*']</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Korny</title>
		<link>http://benjaminbaka.wordpress.com/2008/02/16/challenge-4-listing-files-recursively-with-ruby/#comment-54</link>
		<dc:creator>Korny</dc:creator>
		<pubDate>Mon, 21 Jul 2008 07:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/2008/02/16/challenge-4-listing-files-recursively-with-ruby/#comment-54</guid>
		<description>You might also want to check the Ruby &#039;find&#039; standard library :)
You can get the above down to:
require &#039;find&#039;
def list(file_name)
  Find.find(file_name) do &#124;path&#124;
    puts path unless FileTest.directory?(path)
  end
end</description>
		<content:encoded><![CDATA[<p>You might also want to check the Ruby &#8216;find&#8217; standard library <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
You can get the above down to:<br />
require &#8216;find&#8217;<br />
def list(file_name)<br />
  Find.find(file_name) do |path|<br />
    puts path unless FileTest.directory?(path)<br />
  end<br />
end</p>
]]></content:encoded>
	</item>
</channel>
</rss>
