るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.024秒)
トップページ > クエリ:File[x] > クエリ:IO[x] > クエリ:setgid?[x]

別のキーワード

  1. io popen
  2. io pipe
  3. io each_line
  4. io each
  5. io readlines

ライブラリ

クラス

モジュール

検索結果

File.setgid?(path) -> bool (39106.0)

FileTest.#setgid? と同じです。

...
File
Test.#setgid? と同じです。

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

FileTest.#setgid?(file) -> bool (21219.0)

ファイルが setgid(2) されている時に真を返 します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

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

//emlist[例][ruby]{
require 'fileutils'
IO
.write("testfile", "")
File
Utils.chmod("g+s", "testfile")
File
Test.setgid?("testfile") # => true
File
Utils.chmod("g-s", "testfile")
File
Test.setgid?("testfile")...