るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.032秒)
トップページ > バージョン:2.3.0[x] > クエリ:Integer[x] > クラス:File::Stat[x] > クエリ:ino[x]

別のキーワード

  1. openssl integer
  2. asn1 integer
  3. _builtin integer
  4. integer new
  5. integer upto

ライブラリ

キーワード

検索結果

File::Stat#ino -> Integer (54628.0)

i-node 番号を返します。

...i-node 番号を返します。

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

File::Stat#dev_minor -> Integer (18607.0)

dev の minor 番号部を返します。

...dev の minor 番号部を返します。

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

File::Stat#rdev_minor -> Integer (18607.0)

rdev の minor 番号部を返します。

...rdev の minor 番号部を返します。

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