るりまサーチ

最速Rubyリファレンスマニュアル検索!
54件ヒット [1-54件を表示] (0.220秒)

別のキーワード

  1. _builtin to_a
  2. matrix to_a
  3. to_a
  4. dbm to_a
  5. argf.class to_a

検索結果

Net::FTP::MLSxEntry#writable? -> bool (27202.0)

ファイルに書き込めるなら true を返します。

ファイルに書き込めるなら true を返します。

Pathname#writable? -> bool (27202.0)

FileTest.writable?(self.to_s) と同じです。

...FileTest.writable?(self.to_s) と同じです。


@see FileTest.#writable?...

Shell::CommandProcessor#writable?(file) -> bool (27201.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列を指定します。

@see FileTest.#writable?...

Pathname#world_writable? -> bool (15202.0)

FileTest.world_writable?(self.to_s) と同じです。

...FileTest.world_writable?(self.to_s) と同じです。


@see FileTest.#world_writable?...

Shell::CommandProcessor#world_writable? (15202.0)

@todo

@todo

絞り込み条件を変える

File::Stat#world_writable? -> Integer | nil (12308.0)

全てのユーザから書き込めるならば、そのファイルのパーミッションを表す 整数を返します。そうでない場合は nil を返します。

...ーミッションを表す
整数を返します。そうでない場合は nil を返します。

整数の意味はプラットフォームに依存します。

//emlist[][ruby]{
m = File.stat("/tmp").world_writable? # => 511
sprintf("%o", m) # => "777"
//}...