るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.150秒)
トップページ > 種類:特異メソッド[x] > バージョン:2.4.0[x] > クエリ:file[x] > クラス:File[x] > クエリ:size[x]

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file ctime
  4. file atime

ライブラリ

キーワード

検索結果

File.size(path) -> Integer (81358.0)

FileTest.#size と同じです。

...
File
Test.#size と同じです。

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

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

FileTest.#size? と同じです。

...
File
Test.#size? と同じです。

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

File.truncate(path, length) -> 0 (27061.0)

path で指定されたファイルのサイズを最大 length バイト にします。

...す文字列を指定します。

@param length 変更したいサイズを整数で与えます。

@raise Errno::EXXX 失敗した場合に発生します。

//emlist[例][ruby]{
IO.write("testfile", "1234567890")
File
.truncate("testfile", 5) # => 0
File
.size("testfile") # => 5
//}...