Actions
Bug #8525
closedError? in pathname :: Pathname.new(`pwd`.chomp).basename.realpath
Description
[code]
Dir.chdir '/tmp'
p = Pathname.new(pwd
.chomp).basename.realpath
Errno::ENOENT: No such file or directory - /tmp/tmp
from (irb):17:in realpath' from (irb):17:in
realpath'
from (irb):17
from /usr/bin/irb:12:in `'
[/code]
As I got p must be '/tmp'. Am I wrong?
Updated by nobu (Nobuyoshi Nakada) over 11 years ago
- Status changed from Open to Rejected
Pathname.new("/tmp").basename returns "tmp", and expanded result from "/tmp" is "/tmp/tmp".
If you want pathname which may not exist, use Pathname#realdirpath instead.
Actions
Like0
Like0