Some commonly used file manipulation methods in Ruby summary _ruby topics

Source: Internet
Author: User
Tags parent directory

Beginners Ruby, many need to learn, now start to try to write a script using Ruby, which uses a lot of file-related operations, here to organize some. Easy to find again later.

Whether a file or directory exists

Copy Code code as follows:

File.exist? (' File_path ')

is a file

Copy Code code as follows:

File.file? ("File_path")

is a directory

Copy Code code as follows:

File.directory? ("File_path")

Get the file name from the path

Copy Code code as follows:

File.basename ('/tmp/adb.log ') #=> "Adb.log"

#从上面结果中移除扩展名

File.basename ('/tmp/adb.log ', '. Log ') #=> "adb"
#或者
File.basename ('/tmp/adb.log ', '. * ') #=> "adb"


List all the subfolders under the directory

Copy Code code as follows:

#替换puts child for their own operation
dir['/tmp/* '].each{|child|puts Child}

Get Parent Directory

Copy Code code as follows:

#特定目录的父路径
File.expand_path ("..", Specific_path)
#当前目录的父路径
File.expand_path ("..", Dir.pwd)
#或者
File.expand_path ("..")

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.