るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.035秒)
トップページ > クエリ:File.stat[x] > クエリ:gid[x] > クエリ:uid[x] > クエリ:ftype[x] > クエリ:birthtime[x] > 種類:ライブラリ[x]

別のキーワード

  1. _builtin stat
  2. pathname stat
  3. csv stat
  4. gc stat
  5. stat birthtime

検索結果

find (37.0)

ディレクトリ配下のファイルを探索するためのモジュールです。

...人が書き込み可能な危険なコマンドを探す

for dir in ENV['PATH'].split(File::PATH_SEPARATOR)
Find.find(dir) do |fpath|
if File.file?(fpath) and (File.stat(fpath).mode & 022) != 0
printf("file %s is writable from other users\n", fpath)
end
end
end...