るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

キーワード

検索結果

<< < ... 4 5 6 >>

FileUtils.#pwd -> String (24104.0)

プロセスのカレントディレクトリを文字列で返します。

プロセスのカレントディレクトリを文字列で返します。

FileUtils.#remove_dir(path, force = false) -> () (24104.0)

ディレクトリ path を削除します。

...ディレクトリ path を削除します。

@param path 削除するディレクトリ。

@param force 真のときは削除中に発生した StandardError を無視します。...

FileUtils.#remove_file(path, force = false) -> () (24104.0)

ファイル path を削除します。

...ファイル path を削除します。

@param path 削除するファイル。

@param force 真のときは削除中に発生した StandardError を無視します。...

FileUtils.#cmp(file_a, file_b) -> bool (24022.0)

ファイル file_a と file_b の内容が同じなら真を返します。

...ファイル file_a と file_b の内容が同じなら真を返します。

@param file_a ファイル名。

@param file_b ファイル名。

//emlist[][ruby]{
require 'fileutils'
FileUtils
.cmp('somefile', 'somefile') #=> true
FileUtils
.cmp('/dev/null', '/dev/urandom') #=> false
//}...

FileUtils.#compare_file(file_a, file_b) -> bool (24022.0)

ファイル file_a と file_b の内容が同じなら真を返します。

...ファイル file_a と file_b の内容が同じなら真を返します。

@param file_a ファイル名。

@param file_b ファイル名。

//emlist[][ruby]{
require 'fileutils'
FileUtils
.cmp('somefile', 'somefile') #=> true
FileUtils
.cmp('/dev/null', '/dev/urandom') #=> false
//}...

絞り込み条件を変える

<< < ... 4 5 6 >>