0.0
No release in over a year
Generates from an array of directories an array of the files they contain. Support recursive search.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

FileSearch

Generates from an array of directories an array of the files they contain.
Support recursive search.

Installation

gem install file_search

Usage

require 'file_search'

p ['~/Downloads'].file_search
# => ["/home/user/Downloads/test1.txt", "/home/user/Downloads/a/test2.txt"]

p ['~/Downloads'].file_search(recursive: false)
# => ["/home/user/Downloads/test1.txt"]

Test

ruby test/file_search_test.rb

Credit

Copyright (C) Coro365
Licensed under the MIT license.

Code of Conduct

Everyone interacting in the FileSearch project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.