Ruby:查找最近修改的文件

发布于 2024-10-14 20:02:30 字数 29 浏览 3 评论 0原文

在目录中查找最近修改的文件的惯用方法是什么?

What's an idiomatic way to find the most recently modified file within a directory?

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

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

发布评论

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

评论(3

む无字情书 2024-10-21 20:02:30
Dir.glob("*").max_by {|f| File.mtime(f)}
Dir.glob("*").max_by {|f| File.mtime(f)}
桃扇骨 2024-10-21 20:02:30

我不确定是否真的有这样的成语。我会

Dir["*"].sort_by { |file_name| File.stat(file_name).mtime }

编辑

看看三个人如何同时给出或多或少相同的答案。一定是这个。

I'm not sure if there really is an idiom for this. I would do

Dir["*"].sort_by { |file_name| File.stat(file_name).mtime }

Edit

Seeing how three people gave more or less the same answer at the same time. This must be it.

狂之美人 2024-10-21 20:02:30
Dir["*"].sort { |a,b| File.mtime(a) <=> File.mtime(b) }.last

这不是递归的。

Dir["*"].sort { |a,b| File.mtime(a) <=> File.mtime(b) }.last

This is not recursive.

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