るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.072秒)
トップページ > ライブラリ:ビルトイン[x] > クエリ:@[x] > クエリ:>[x] > クエリ:sticky?[x]

別のキーワード

  1. _builtin >
  2. bigdecimal >
  3. float >
  4. complex >
  5. module >

クラス

モジュール

検索結果

File.sticky?(path) -> bool (18208.0)

FileTest.#sticky? と同じです。

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

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

FileTest.#sticky?(file) -> bool (18208.0)

ファイルの sticky ビット(chmod(2) 参照)が 立っている時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...

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

//emlist[例][ruby]{
require 'fileutils'
IO.write("testfile", "")
FileUtils.chmod("o+t", "testfile")
FileTest.sticky?("testfile") # => true
FileUtils.chmod("o-t", "testfile")
FileTest.sticky?("test...
...file") # => false
//}...