るりまサーチ (Ruby 2.2.0)

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

別のキーワード

  1. _builtin stat
  2. pathname stat
  3. gc stat
  4. csv stat
  5. stat pipe?

ライブラリ

検索結果

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

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

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

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