るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.047秒)
トップページ > クエリ: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 (18209.0)

i-node 番号を返します。

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

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

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

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

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

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

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

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

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

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