るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.047秒)
トップページ > バージョン:2.1.0[x] > ライブラリ:ビルトイン[x] > クエリ:stat[x] > クエリ:blocks[x] > 種類:インスタンスメソッド[x]

別のキーワード

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

クラス

検索結果

File::Stat#blocks -> Integer (63349.0)

割り当てられているブロック数を返します。

割り当てられているブロック数を返します。

//emlist[][ruby]{
fs = File::Stat.new($0)
#例
p fs.blocks #=> nil
//}