sticky?(file) -> bool
[permalink][rdoc][edit]-
ファイルの sticky ビット(chmod(2) 参照)が立っている時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
require 'fileutils' IO.write("testfile", "") FileUtils.chmod("o+t", "testfile") FileTest.sticky?("testfile") # => true FileUtils.chmod("o-t", "testfile") FileTest.sticky?("testfile") # => false