FakeProfilePictures::Photo.all_large_names_2x
(在下面定义)返回一个绝对路径名数组,但当我从Dir["picture_*@2x.*"]
中的正确目录irb
时,我只得到基本名称(我想要的) 。获取基本名称的最佳方法是什么?我知道我可以通过添加评论中显示的.map { |f| File.basename(f) }
来做到这一点,但有更简单的/ better/faster/stronger方式吗?
module FakeProfilePictures
class Photo
DIR = File.expand_path(File.join(File.dirname(__FILE__), "photos"))
# ...
def self.all_large_names_2x
@@all_large_names_2x ||= Dir[File.join(DIR, "picture_*@2x.*")] # .map { |f| File.basename(f) }
end
end
end
答案 0 :(得分:20)
你可以做到
Dir.chdir(DIR) do
Dir["picture_*@2x.*"]
end
在块之后,原始目录将被恢复。
答案 1 :(得分:2)
你可以在通用之前chdir
进入DIR
,但我会通过basename
运行所有内容。