るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.069秒)
トップページ > クエリ:_builtin[x] > バージョン:2.4.0[x] > クエリ:at[x] > クエリ:pipe?[x]

別のキーワード

  1. _builtin new
  2. _builtin inspect
  3. _builtin []
  4. _builtin to_s
  5. _builtin each

ライブラリ

クラス

検索結果

File::Stat#pipe? -> bool (87322.0)

無名パイプおよび名前つきパイプ(FIFO)の時に真を返します。

無名パイプおよび名前つきパイプ(FIFO)の時に真を返します。

//emlist[][ruby]{
system("mkfifo /tmp/pipetest")
p File::Stat.new("/tmp/pipetest").pipe? #=> true
//}

File.pipe?(path) -> bool (78601.0)

FileTest.#pipe? と同じです。

FileTest.#pipe? と同じです。

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