Ruby facilitates local folder Systems

Source: Internet
Author: User
Def traverse_dir (file_path) If file. directory? File_path dir. foreach (file_path) Do | file | if file! = "." And file! = ".. "Traverse_dir (file_path +"/"+ file) end else puts" file: # {file. basename (file_path)}, size: # {file. size (file_path)} "endendtraverse_dir ('d:/Apache-Tomcat ')

Def traverse_dir (file_path) If file. directory? File_path (the directory function for determining whether it is a path name or a file name) dir. foreach (file_path) Do | file | (the Dir class contains all files under this path) If file! = "." And file! = ".. "(If you encounter. and .. will stop. indicates the upper-level directory) traverse_dir (file_path + "/" + file) (nested iteration) end else puts "file :#{ file. basename (file_path)}, size: # {file. size (file_path)} "(two functions of file are used) endendtraverse_dir ('. ')

The file class and Dir class are used.

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.