使用Ruby获取文件夹中所有文件的名称

问题描述 投票:313回答:16

我想使用Ruby从文件夹中获取所有文件名。

ruby file directory filenames
16个回答
478
投票

您还有快捷方式选项

Dir["/path/to/search/*"]

如果你想在任何文件夹或子文件夹中找到所有Ruby文件:

Dir["/path/to/search/**/*.rb"]

3
投票

这对我有用:

Dir.entries(dir).select { |f| File.file?(File.join(dir, f)) }

Dir.entries返回一个字符串数组。然后,我们必须向File.file?提供文件的完整路径,除非dir等于我们当前的工作目录。这就是为什么这个File.join()


2
投票

您可能还想使用Rake::FileList(假设您有rake依赖):

FileList.new('lib/*') do |file|
  p file
end

根据API:

FileLists是懒惰的。当给出要包含在文件列表中的可能文件的glob模式列表时,FileList保存模式以供后者使用,而不是搜索文件结构以查找文件。

https://docs.ruby-lang.org/en/2.1.0/Rake/FileList.html


1
投票

如果要获取包含符号链接的文件名数组,请使用

Dir.new('/path/to/dir').entries.reject { |f| File.directory? f }

甚至

Dir.new('/path/to/dir').reject { |f| File.directory? f }

如果你想没有符号链接,请使用

Dir.new('/path/to/dir').select { |f| File.file? f }

如其他答案所示,如果要以递归方式获取所有文件,请使用Dir.glob('/path/to/dir/**/*')而不是Dir.new('/path/to/dir')


1
投票
Dir.new('/home/user/foldername').each { |file| puts file }

1
投票

除了这个帖子中的建议之外,我还想提一下,如果你需要返回点文件(.gitignore等),使用Dir.glob,你需要包含一个标志:Dir.glob("/path/to/dir/*", File::FNM_DOTMATCH)默认情况下,Dir。条目包括点文件,以及当前的父目录。

对于任何感兴趣的人,我很好奇这里的答案如何在执行时相互比较,这里是针对深层嵌套层次结构的结果。前三个结果是非递归的:

       user     system      total        real
Dir[*]: (34900 files stepped over 100 iterations)
  0.110729   0.139060   0.249789 (  0.249961)
Dir.glob(*): (34900 files stepped over 100 iterations)
  0.112104   0.142498   0.254602 (  0.254902)
Dir.entries(): (35600 files stepped over 100 iterations)
  0.142441   0.149306   0.291747 (  0.291998)
Dir[**/*]: (2211600 files stepped over 100 iterations)
  9.399860  15.802976  25.202836 ( 25.250166)
Dir.glob(**/*): (2211600 files stepped over 100 iterations)
  9.335318  15.657782  24.993100 ( 25.006243)
Dir.entries() recursive walk: (2705500 files stepped over 100 iterations)
 14.653018  18.602017  33.255035 ( 33.268056)
Dir.glob(**/*, File::FNM_DOTMATCH): (2705500 files stepped over 100 iterations)
 12.178823  19.577409  31.756232 ( 31.767093)

这些是使用以下基准测试脚本生成的:

require 'benchmark'
base_dir = "/path/to/dir/"
n = 100
Benchmark.bm do |x|
  x.report("Dir[*]:") do
    i = 0
    n.times do
      i = i + Dir["#{base_dir}*"].select {|f| !File.directory? f}.length
    end
    puts " (#{i} files stepped over #{n} iterations)"
  end
  x.report("Dir.glob(*):") do
    i = 0
    n.times do
      i = i + Dir.glob("#{base_dir}/*").select {|f| !File.directory? f}.length
    end
    puts " (#{i} files stepped over #{n} iterations)"
  end
  x.report("Dir.entries():") do
    i = 0
    n.times do
      i = i + Dir.entries(base_dir).select {|f| !File.directory? File.join(base_dir, f)}.length
    end
    puts " (#{i} files stepped over #{n} iterations)"
  end
  x.report("Dir[**/*]:") do
    i = 0
    n.times do
      i = i + Dir["#{base_dir}**/*"].select {|f| !File.directory? f}.length
    end
    puts " (#{i} files stepped over #{n} iterations)"
  end
  x.report("Dir.glob(**/*):") do
    i = 0
    n.times do
      i = i + Dir.glob("#{base_dir}**/*").select {|f| !File.directory? f}.length
    end
    puts " (#{i} files stepped over #{n} iterations)"
  end
  x.report("Dir.entries() recursive walk:") do
    i = 0
    n.times do
      def walk_dir(dir, result)
        Dir.entries(dir).each do |file|
          next if file == ".." || file == "."

          path = File.join(dir, file)
          if Dir.exist?(path)
            walk_dir(path, result)
          else
            result << file
          end
        end
      end
      result = Array.new
      walk_dir(base_dir, result)
      i = i + result.length
    end
    puts " (#{i} files stepped over #{n} iterations)"
  end
  x.report("Dir.glob(**/*, File::FNM_DOTMATCH):") do
    i = 0
    n.times do
      i = i + Dir.glob("#{base_dir}**/*", File::FNM_DOTMATCH).select {|f| !File.directory? f}.length
    end
    puts " (#{i} files stepped over #{n} iterations)"
  end
end

文件计数的差异是由于Dir.entries默认包含隐藏文件。由于需要重建文件的绝对路径以确定文件是否是一个目录,Dir.entries在这种情况下最终需要更长的时间,但即使没有它,它仍然比递归情况下的其他选项持续更长时间。这都是在OSX上使用ruby 2.5.1。


0
投票
def get_path_content(dir)
  queue = Queue.new
  result = []
  queue << dir
  until queue.empty?
    current = queue.pop
    Dir.entries(current).each { |file|
      full_name = File.join(current, file)
      if not (File.directory? full_name)
        result << full_name
      elsif file != '.' and file != '..'
          queue << full_name
      end
    }
  end
  result
end

返回文件从目录和所有子目录的相对路径


-1
投票

在IRB上下文中,您可以使用以下命令获取当前目录中的文件:

file_names = `ls`.split("\n")

您也可以在其他目录上使用它:

file_names = `ls ~/Documents`.split("\n")

154
投票
Dir.entries(folder)

例:

Dir.entries(".")

资料来源:http://ruby-doc.org/core/classes/Dir.html#method-c-entries


87
投票

以下代码段确切地显示了目录中文件的名称,跳过子目录和"."".."点缀文件夹:

Dir.entries("your/folder").select {|f| !File.directory? f}

31
投票

以递归方式获取所有文件(仅限严格文件):

Dir.glob('path/**/*').select{ |e| File.file? e }

或者任何不是目录的东西(File.file?会拒绝非常规文件):

Dir.glob('path/**/*').reject{ |e| File.directory? e }

Alternative Solution

使用Find#find而不是像Dir.glob这样的基于模式的查找方法实际上更好。见this answer to "One-liner to Recursively List Directories in Ruby?"


12
投票

这对我有用:

如果您不想要隐藏文件[1],请使用Dir []:

# With a relative path, Dir[] will return relative paths 
# as `[ './myfile', ... ]`
#
Dir[ './*' ].select{ |f| File.file? f } 

# Want just the filename?
# as: [ 'myfile', ... ]
#
Dir[ '../*' ].select{ |f| File.file? f }.map{ |f| File.basename f }

# Turn them into absolute paths?
# [ '/path/to/myfile', ... ]
#
Dir[ '../*' ].select{ |f| File.file? f }.map{ |f| File.absolute_path f }

# With an absolute path, Dir[] will return absolute paths:
# as: [ '/home/../home/test/myfile', ... ]
#
Dir[ '/home/../home/test/*' ].select{ |f| File.file? f }

# Need the paths to be canonical?
# as: [ '/home/test/myfile', ... ]
#
Dir[ '/home/../home/test/*' ].select{ |f| File.file? f }.map{ |f| File.expand_path f }

现在,Dir.entries将返回隐藏文件,并且您不需要通配符asterix(您可以只传递带有目录名的变量),但它将直接返回基本名称,因此File.xxx函数将不起作用。

# In the current working dir:
#
Dir.entries( '.' ).select{ |f| File.file? f }

# In another directory, relative or otherwise, you need to transform the path 
# so it is either absolute, or relative to the current working dir to call File.xxx functions:
#
home = "/home/test"
Dir.entries( home ).select{ |f| File.file? File.join( home, f ) }

[1]关于unix的.dotfile,我不知道Windows


8
投票

就个人而言,我发现这对于循环文件夹中的文件最有用,前瞻性安全:

Dir['/etc/path/*'].each do |file_name|
  next if File.directory? file_name 
end

8
投票

这是在目录中查找文件的解决方案:

files = Dir["/work/myfolder/**/*.txt"]

files.each do |file_name|
  if !File.directory? file_name
    puts file_name
    File.open(file_name) do |file|
      file.each_line do |line|
        if line =~ /banco1/
          puts "Found: #{line}"
        end
      end
    end
  end
end

5
投票

在Ruby 2.5中,您现在可以使用Dir.children。除了“。”之外,它将文件名作为数组。和“......”

例:

Dir.children("testdir")   #=> ["config.h", "main.rb"]

http://ruby-doc.org/core-2.5.0/Dir.html#method-c-children


4
投票

获取目录中的所有文件名时,此片段可用于拒绝以.开头的两个目录[...]和隐藏文件

files = Dir.entries("your/folder").reject {|f| File.directory?(f) || f[0].include?('.')}
© www.soinside.com 2019 - 2024. All rights reserved.