Concise method of traversing directories in Ruby _ruby topics

Source: Internet
Author: User

In Ruby we want to implement the method of traversing the specified directory, the online method is also very much, we can refer to reference, such as the traverse.rb file below the contents of:

Copy Code code as follows:

#!/usr/bin/ruby
def Traverse (filepath)
If File.directory? (filepath)
Puts "dirs:" + filepath
Dir.foreach (filepath) do |filename|
If filename!= "." and filename!= "..."
Traverse (filepath + "/" + filename)
End
End
Else
Puts "Files:" + filepath
End
End

#traverse ("D:/vmware")
Traverse ("/usr/local/src")

In fact Ruby has defined the Find.find method to handle this situation, the Ruby program above can be implemented in its own way, and the code looks neater as follows:
Copy Code code as follows:

#!/usr/bin/ruby
Require ' find '
Find.find ("/usr/local/src") do |filename|
P filename
End

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.