在Ruby中,你可以使用Dir
类来遍历目录。以下是一些常见的方法来遍历目录:
Dir.glob("*") do |file|
puts file
end
Dir.glob("path/to/directory/*") do |file|
puts file
end
each_entry
方法遍历目录下的所有文件和子目录,同时获取文件名和路径:Dir.each_entry("path/to/directory") do |entry|
puts "Name: #{entry.name}, Path: #{entry.path}"
end
entries
方法遍历目录下的所有文件和子目录,同时获取文件名和路径:Dir.entries("path/to/directory").each do |entry|
puts "Name: #{entry}, Path: #{entry.path}"
end
在这些示例中,"path/to/directory"
是你要遍历的目录的路径。你可以根据需要替换为实际路径。