grpowned?(file) -> bool
[permalink][rdoc][edit]-
ファイルのグループ ID がカレントプロセスの実効グループ ID と等しい時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
- [EXCEPTION] IOError:
- 指定された IO オブジェクト file が既に close されていた場合に発生します。
IO.write("testfile", "") File.chown(-1, Process.gid, "testfile") FileTest.grpowned?("testfile") # => true File.chown(-1, Process.gid + 10, "testfile") FileTest.grpowned?("testfile") # => false