るりまサーチ

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

別のキーワード

  1. _builtin truncate
  2. bigdecimal truncate
  3. csv truncate
  4. file truncate
  5. stringio truncate

クラス

検索結果

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

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

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

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

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

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