Ruby 打印目录标志?

发布于 2024-12-27 07:03:05 字数 152 浏览 1 评论 0 原文

有没有办法在 Ruby 中打印给定 Dir 的当前“chmod 标志”?

我不是权限方面的专家,所以请原谅这些术语,但我想获取有关目录的所有可能的信息(它是只读的,权限是什么,等等)。

编辑:我需要它在 Ruby 1.8.6 中工作

Is there a way to print the current "chmod flags" for a given Dir in Ruby?

I'm not an expert on permissions so forgive the terminology, but I'd like to get all possible information about a directory (is it read-only, what are the permissions, etc etc).

Edit: I need this to work in Ruby 1.8.6

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

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

发布评论

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

评论(2

高冷爸爸 2025-01-03 07:03:05

http://ruby-doc.org/core -1.9.3/File.html#method-c-world_read-3F

sprintf("%o", File.world_readable?("/"))

Ruby 1.8.6解决方案

sprintf("%o", File.stat("/").mode) #40755

http://ruby-doc.org/core-1.9.3/File.html#method-c-world_readable-3F

sprintf("%o", File.world_readable?("/"))

Ruby 1.8.6 solution:

sprintf("%o", File.stat("/").mode) #40755
半边脸i 2025-01-03 07:03:05

您可以使用一些 shell:

`stat --format=%a #{Dir.pwd}`.chomp # => 755

它不是纯红宝石,但我认为它可以完成工作。

You could use a bit of shell:

`stat --format=%a #{Dir.pwd}`.chomp # => 755

It's not pure ruby, but I think it gets the job done.

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