mode

stat.mode รข fixnum
Instance Public methods

Returns an integer representing the permission bits of stat. The meaning of the bits is platform dependent; on Unix systems, see stat(2).

File.chmod(0644, "testfile")   #=> 1
s = File.stat("testfile")
sprintf("%o", s.mode)          #=> "100644"
doc_ruby_on_rails
2015-04-06 07:07:54
Comments
Leave a Comment

Please login to continue.