るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.058秒)
トップページ > クエリ:IO.new[x] > クエリ:>>[x] > クエリ:body=[x] > クエリ:$stdin[x] > クエリ:use_ui[x] > モジュール:FileUtils[x] > バージョン:2.3.0[x]

別のキーワード

  1. _builtin >>
  2. net/http body
  3. httprequest body
  4. net/http read_body
  5. date >>

ライブラリ

検索結果

FileUtils.#uptodate?(newer, older_list, options = nil) -> bool (604.0)

newer が、older_list に含まれるすべてのファイルより新しいとき真。 存在しないファイルは無限に古いとみなされます。

...@param options どのようなオプションも指定することはできません。

@raise ArgumentError options にオプションを指定した場合に発生します。

//emlist[][ruby]{
require 'fileutils'
FileUtils
.uptodate?('hello.o', ['hello.c', 'hello.h']) or system('make')
//}...