るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.100秒)

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

クラス

検索結果

File.size?(path) -> Integer | nil (18302.0)

FileTest.#size? と同じです。

...FileTest.#size? と同じです。

@param path パスを表す文字列か IO オブジェクトを指定します。...

File::Stat#size? -> Integer | nil (18239.0)

サイズが0の時にはnil、それ以外の場合はファイルサイズを返します。

...はnil、それ以外の場合はファイルサイズを返します。

//emlist[][ruby]{
require 'tempfile'

fp = Tempfile.new("temp")
p
fp.size #=> 0
p
File::Stat.new(fp.path).size? #=> nil
fp.print "not 0 "
fp.close
p
FileTest.exist?(fp.path) #=> true
p
File::Stat.new(fp.path).size? #=> 6
//}...