world_readable?

File.world_readable?(file_name) â fixnum or nil
Instance Public methods

If file_name is readable by others, returns an integer representing the file permission bits of file_name. Returns nil otherwise. The meaning of the bits is platform dependent; on Unix systems, see stat(2).

file_name can be an IO object.

File.world_readable?("/etc/passwd")           #=> 420
m = File.world_readable?("/etc/passwd")
sprintf("%o", m)                              #=> "644"
doc_ruby_on_rails
2015-04-06 15:57:52
Comments
Leave a Comment

Please login to continue.