为什么 Pathname 的 chdir 方法被废弃了?

发布于 2024-10-05 18:05:16 字数 250 浏览 2 评论 0原文

为什么 Pathname 的 chdir 方法从 ruby​​ 1.8.1 开始就被废弃了?这有什么问题吗?

这个:

dir = Pathname('a')
dir.chdir do
  ...
end

比这个更短且更具可读性:

dir = Pathname('a')
Dir.chdir(dir) do
  ...
end

Why is Pathname's chdir method obsoleted since ruby 1.8.1? What is wrong with it?

This:

dir = Pathname('a')
dir.chdir do
  ...
end

is shorter and more readable than this:

dir = Pathname('a')
Dir.chdir(dir) do
  ...
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终陌 2024-10-12 18:05:16

它没有任何问题,Pathname 只是不适合它。

请改用 Dir.chdir

来源:http://corelib.rubyonrails.org/classes/Pathname.html#M000633(点击“[来源]”)

Nothing is wrong with it, Pathname just wasn't the right place for it.

Use Dir.chdir instead.

Source: http://corelib.rubyonrails.org/classes/Pathname.html#M000633 (click "[Source]")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文