Feature #12194
closed
File.dirname optional parameter
Added by nobu (Nobuyoshi Nakada) over 8 years ago.
Updated over 3 years ago.
Description
As talked at the last developers' meeting, I propose an addition of an optional parameter to File.dirname
.
Often I see the code, like
File.dirname(File.dirname(path)) # or
File.expand_path("../..", path)
which are not concise.
This proposal can make them as:
File.dirname(path, 2)
Patch
- Subject changed from File.dirname optonal parameter to File.dirname optional parameter
Using Pathname would already make this much nicer:
Pathname(path).parent.parent
And less error prone than File.dirname if the path is not absolute.
Just my opinion, but I do not like this particular syntax.
I myself have found Pathname harder or less elegant to use than the direct File* or Dir* methods so I am in support of the suggestion by nobu.
So to Benoit, I understand that you may consider File.dirname(path, 2) not ideal either (a user may wonder what the 2 means), the alternative
suggestion to use Pathname is not ideal either and additionally requires one to require pathname for that toplevel Pathname() method and
subsequent use of pathname:
require 'pathname'
# require 'fileutils'; FileUtils.mkdir_p('/tmp/foobar/') # <-- this line just for testing purpose, disregard it
Pathname("/tmp/foobar/").parent.parent.to_s # => "/"
Being able to directly do so on File.dirname() itself is good, in my opinion.
- Description updated (diff)
- Status changed from Open to Closed
Also available in: Atom
PDF
Like0
Like0Like0Like0Like0Like0Like0