12件ヒット
[1-12件を表示]
(0.017秒)
ライブラリ
- pathname (12)
検索結果
-
Pathname
# unlink -> Integer (3101.0) -
self が指すディレクトリあるいはファイルを削除します。
...self が指すディレクトリあるいはファイルを削除します。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("/path/to/sample")
pathname.exist? # => true
pathname.unlink # => 1
pathname.exist? # => false
//}...