るりまサーチ (Ruby 2.7.0)

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. ipaddr to_i
  5. csv to_i

モジュール

キーワード

検索結果

FileUtils.#remove(list, options = {}) -> () (18325.0)

list で指定された対象を消去します。

...は配列で指定します。

@param options :force, :noop, :verbose が指定できます。
c:FileUtils#options

//emlist[][ruby]{
require 'fileutils'
FileUtils
.rm('junk.txt')
FileUtils
.rm(Dir.glob('*~'))
FileUtils
.rm('NotExistFile', force: true) # never raises exception
//}...

FileUtils.#rm(list, options = {}) -> () (18325.0)

list で指定された対象を消去します。

...は配列で指定します。

@param options :force, :noop, :verbose が指定できます。
c:FileUtils#options

//emlist[][ruby]{
require 'fileutils'
FileUtils
.rm('junk.txt')
FileUtils
.rm(Dir.glob('*~'))
FileUtils
.rm('NotExistFile', force: true) # never raises exception
//}...