114件ヒット
[101-114件を表示]
(0.067秒)
ライブラリ
-
net
/ http (12) - pathname (36)
- shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12) -
shell
/ process-controller (18) - strscan (12)
クラス
-
Net
:: HTTPGenericRequest (12) - Pathname (36)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) -
Shell
:: ProcessController (18) - StringScanner (12)
キーワード
-
active
_ jobs _ exist? (6) -
body
_ exist? (12) - delete (12)
- exists? (18)
-
jobs
_ exist? (6) - unlink (12)
-
waiting
_ jobs _ exist? (6)
検索結果
-
Pathname
# delete -> Integer (13.0) -
self が指すディレクトリあるいはファイルを削除します。
...self が指すディレクトリあるいはファイルを削除します。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("/path/to/sample")
pathname.exist? # => true
pathname.unlink # => 1
pathname.exist? # => false
//}... -
Pathname
# unlink -> Integer (13.0) -
self が指すディレクトリあるいはファイルを削除します。
...self が指すディレクトリあるいはファイルを削除します。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("/path/to/sample")
pathname.exist? # => true
pathname.unlink # => 1
pathname.exist? # => false
//}...