るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.023秒)
トップページ > クエリ:size[x] > バージョン:2.1.0[x] > クエリ:require[x] > ライブラリ:tempfile[x]

別のキーワード

  1. _builtin size
  2. net/imap size
  3. _builtin size?
  4. rexml/document size
  5. file size

クラス

検索結果

Tempfile#size -> Integer (45364.0)

テンポラリファイルのサイズを返します。

...テンポラリファイルのサイズを返します。

require "tempfile"
tf = Tempfile.new("foo")
tf.print("bar,ugo")
p tf.size # => 7
tf.close
p tf.size # => 7...

Tempfile#length -> Integer (64.0)

テンポラリファイルのサイズを返します。

...テンポラリファイルのサイズを返します。

require "tempfile"
tf = Tempfile.new("foo")
tf.print("bar,ugo")
p tf.size # => 7
tf.close
p tf.size # => 7...