48件ヒット
[1-48件を表示]
(0.102秒)
ライブラリ
-
net
/ http (12) - pathname (24)
-
shell
/ command-processor (12)
クラス
-
Net
:: HTTPGenericRequest (12) - Pathname (24)
-
Shell
:: CommandProcessor (12)
キーワード
-
body
_ exist? (12) - delete (12)
- exists? (6)
- unlink (12)
検索結果
先頭5件
-
Shell
:: CommandProcessor # exist?(file) -> bool (21101.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#exist? FileTest.#exists?... -
Net
:: HTTPGenericRequest # body _ exist? -> bool (12202.0) -
このメソッドは obsolete です。
...このメソッドは obsolete です。
Net::HTTPGenericRequest#response_body_permitted?
の別名です。... -
Pathname
# delete -> Integer (6113.0) -
self が指すディレクトリあるいはファイルを削除します。
...self が指すディレクトリあるいはファイルを削除します。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("/path/to/sample")
pathname.exist? # => true
pathname.unlink # => 1
pathname.exist? # => false
//}... -
Shell
:: CommandProcessor # exists?(file) -> bool (6001.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#exist? FileTest.#exists?... -
Pathname
# unlink -> Integer (3013.0) -
self が指すディレクトリあるいはファイルを削除します。
...self が指すディレクトリあるいはファイルを削除します。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("/path/to/sample")
pathname.exist? # => true
pathname.unlink # => 1
pathname.exist? # => false
//}...