Feature #6671
open
File.split_all and File.split_root
Added by trans (Thomas Sawyer) over 12 years ago.
Updated almost 7 years ago.
Description
=begin
Is there a method for this already?
File.split_all('a/b/c') #=> ['a','b','c']
If not I propose it be added. I've had need of such more than a few times.
It's too bad that File.split can't do this, as it would make more sense. And the current method be called split_base
.
In addition split_root
would be helpful.
root, path = File.split_all('a/b/c')
root #=> 'a'
path #=> 'b/c'
=end
Typo in that last example, it should be split_root
obviously.
How about:
'a/b/c'.split('/') # => ['a','b','c']
And
root, _, path = 'a/b/c'.partition('/')
root #=> 'a'
path #=> 'b/c'
marcandre (Marc-Andre Lafortune) wrote:
How about:
'a/b/c'.split('/') # => ['a','b','c']
And
root, _, path = 'a/b/c'.partition('/')
root #=> 'a'
path #=> 'b/c'
I guess that might be problematic for absolute paths:
> "/a/b/c".split '/'
=> ["", "a", "b", "c"]
> "/a/b/c".partition '/'
=> ["", "/", "a/b/c"]
Is the feature wanted Pathname#each_filename (for split_all) ?
Its also not so simple b/c of variation in file systems, e.g. a\b\c
.
- Assignee set to mame (Yusuke Endoh)
mame-san: Please judge this ticket.
- Status changed from Open to Assigned
- Assignee changed from mame (Yusuke Endoh) to matz (Yukihiro Matsumoto)
I think I have no right to accept any feature.
Even if I have, I won't use the right without any particular reason.
--
Yusuke Endoh mame@tsg.ne.jp
- Target version changed from 2.0.0 to 2.6
- Target version deleted (
2.6)
Also available in: Atom
PDF
Like0
Like0Like0Like0Like0Like0Like0Like0Like0