関連するキーワード
ライブラリ
- ビルトイン (5)
検索結果
-
File
:: Stat # writable? -> bool (18108) -
書き込み可能な時に真を返します。
...書き込み可能な時に真を返します。
p File::Stat.new($0).writable? #=> true... -
File
:: Stat # world _ writable? -> Fixnum | nil (6108) -
If stat is writable by others, returns an integer representing the file permission bits of stat. Returns nil otherwise. The meaning of the bits is platform dependent; on Unix systems, see stat(2).
...le by others, returns an integer representing
the file permission bits of stat. Returns nil otherwise. The
meaning of the bits is platform dependent; on Unix systems, see
stat(2).
m = File.stat("/tmp").world_writable? # => 511
sprintf("%o", m) # => "777"...
