るりまサーチ

最速Rubyリファレンスマニュアル検索!
51件ヒット [1-51件を表示] (0.023秒)
トップページ > クエリ:FileTest.#grpowned?[x]

別のキーワード

  1. _builtin filetest
  2. filetest grpowned?
  3. filetest owned?
  4. filetest socket?
  5. filetest zero?

検索結果

FileTest.#grpowned?(file) -> bool (62112.0)

ファイルのグループ ID がカレントプロセスの実効グループ ID と等しい時に真を返 します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...ト file が既に close されていた場合に発生します。

//emlist[例][ruby]{
IO.write("testfile", "")
File.chown(-1, Process.gid, "testfile")
FileTest
.grpowned?("testfile") # => true
File.chown(-1, Process.gid + 10, "testfile")
FileTest
.grpowned?("testfile") # => false
//}...

Pathname#grpowned? -> bool (18123.0)

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

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


@see FileTest.#grpowned?...

Shell#grpowned?(file) -> bool (18122.0)

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

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

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#grpowned?...

Shell::CommandProcessor#grpowned?(file) -> bool (18122.0)

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

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

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#grpowned?...

Shell::Filter#grpowned?(file) -> bool (18122.0)

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

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

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#grpowned?...

絞り込み条件を変える

File.grpowned?(path) -> bool (18116.0)

FileTest.#grpowned? と同じです。

...
FileTest.#grpowned?
と同じです。

@param path パスを表す文字列か IO オブジェクトを指定します。...