Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GNU find または Perl の File::Find に相当するものは Ruby にありますか? おそらく gem ですか? つまり、ツリー全体を横断します。ありがとう、
Stdlib はDir#globとFindモジュールの両方を提供します。Enumerable メソッドと多数のファイル テスト メソッドを組み合わせることで、ファイル検索動作を簡単に実装するために必要なすべてが得られます。
Dir#glob
Find
Dir.glob を使用できます
Dir.glob "**/*" do |file_path| #do somthing with file_path end