Method: Pathname#files_r
- Defined in:
- lib/pleasant_path/pathname.rb
#files_r ⇒ Array<Pathname>
Returns all (recursive) descendent files of the directory indicated by the Pathname. Returned Pathnames are prefixed by the original Pathname, and are in depth-first order.
205 206 207 |
# File 'lib/pleasant_path/pathname.rb', line 205 def files_r self.find_files.to_a end |