るりまサーチ

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

別のキーワード

  1. _builtin exist?
  2. pathname exist?
  3. dir exist?
  4. file exist?
  5. filetest exist?

ライブラリ

クラス

検索結果

Pathname#delete -> Integer (21114.0)

self が指すディレクトリあるいはファイルを削除します。

...self が指すディレクトリあるいはファイルを削除します。

//emlist[例][ruby]{
require "pathname"

p
athname = Pathname("/path/to/sample")
p
athname.exist? # => true
p
athname.unlink # => 1
p
athname.exist? # => false
//}...

Pathname#unlink -> Integer (6014.0)

self が指すディレクトリあるいはファイルを削除します。

...self が指すディレクトリあるいはファイルを削除します。

//emlist[例][ruby]{
require "pathname"

p
athname = Pathname("/path/to/sample")
p
athname.exist? # => true
p
athname.unlink # => 1
p
athname.exist? # => false
//}...