Class File
In: lib/facet/file/split_all.rb
Parent: Object

Methods

split_all  

Public Class methods

Splits a file path into an array of individual path components. This differs from File.split, which divides the path into only two parts, directory path and basename.

  require 'facet/file/split_all'

  split_all("a/b/c") =>  ['a', 'b', 'c']

[Validate]