513件ヒット
[1-100件を表示]
(0.160秒)
ライブラリ
- ビルトイン (55)
- etc (12)
- json (12)
- mkmf (24)
-
net
/ ftp (140) - psych (12)
- rake (12)
-
rake
/ packagetask (24) -
rake
/ rdoctask (12) -
rubygems
/ gem _ path _ searcher (12) -
rubygems
/ indexer (24) -
rubygems
/ installer (12) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (12) -
rubygems
/ spec _ fetcher (24) -
rubygems
/ specification (12) -
rubygems
/ uninstaller (12) -
rubygems
/ validator (12) - shell (42)
-
shell
/ command-processor (6) -
shell
/ filter (6)
クラス
- Class (12)
- Dir (55)
-
Etc
:: Passwd (12) -
Gem
:: GemPathSearcher (12) -
Gem
:: Indexer (24) -
Gem
:: Installer (12) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (12) -
Gem
:: SpecFetcher (24) -
Gem
:: Specification (12) -
Gem
:: Uninstaller (12) -
Gem
:: Validator (12) -
Net
:: FTP (120) -
Net
:: FTP :: MLSxEntry (20) -
Psych
:: Nodes :: Document (12) -
RDoc
:: Options (24) -
Rake
:: Application (12) -
Rake
:: PackageTask (24) -
Rake
:: RDocTask (12) - Shell (42)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6)
モジュール
- Kernel (24)
キーワード
-
bin
_ dir (24) - bindir (12)
-
cache
_ dir (12) - children (7)
- cwd (6)
-
dest
_ directory (12) -
dir
_ config (12) -
dir
_ stack (6) - directory (12)
- dirname (18)
- dirs (6)
- download (12)
-
dummy
_ makefile (12) - facts (10)
- getdir (12)
- getwd (6)
- inspect (12)
-
json
_ creatable? (12) -
lib
_ dirs _ for (12) - list (24)
- ls (24)
- mkdir (12)
- nlst (12)
-
op
_ dir (12) -
original
_ dir (12) -
package
_ dir (12) -
package
_ dir _ path (12) - path (12)
- pwd (18)
-
rdoc
_ dir (12) - read (12)
-
remove
_ leading _ dot _ dir (12) -
spec
_ dirs (12) -
tag
_ directives (12) -
template
_ dir (12) -
to
_ path (12) - type (10)
検索結果
先頭5件
-
Net
:: FTP # dir(*args) -> [String] (21306.0) -
LIST コマンドを送信し、結果を返します。
...LIST コマンドを送信し、結果を返します。
ブロックとともに呼び出された場合は各行に対してブロックを
実行します。ブロックなしの場合には文字列の配列で結果を返します。
@param args LIST の引数を文字列で渡します。......ます。
@raise Net::FTPTempError 応答コードが 4yz のときに発生します。
@raise Net::FTPPermError 応答コードが 5yz のときに発生します。
@raise Net::FTPProtoError 応答コードが RFC 的に正しくない場合に発生します。
@raise Net::FTPReplyError 応答... -
Etc
:: Passwd # dir -> String (21303.0) -
このユーザのホームディレクトリを表すパスを返します。
このユーザのホームディレクトリを表すパスを返します。 -
Gem
:: SpecFetcher # dir -> String (21303.0) -
このクラスが使用するキャッシュ用ディレクトリの名前を返します。
このクラスが使用するキャッシュ用ディレクトリの名前を返します。 -
Net
:: FTP # dir(*args) {|line| . . . } -> nil (21106.0) -
LIST コマンドを送信し、結果を返します。
...LIST コマンドを送信し、結果を返します。
ブロックとともに呼び出された場合は各行に対してブロックを
実行します。ブロックなしの場合には文字列の配列で結果を返します。
@param args LIST の引数を文字列で渡します。......ます。
@raise Net::FTPTempError 応答コードが 4yz のときに発生します。
@raise Net::FTPPermError 応答コードが 5yz のときに発生します。
@raise Net::FTPProtoError 応答コードが RFC 的に正しくない場合に発生します。
@raise Net::FTPReplyError 応答... -
RDoc
:: Options # template _ dir -> String | nil (15403.0) -
コマンドライン引数の --template オプションで指定したテンプレートに対応 するディレクトリを返します。
...コマンドライン引数の --template オプションで指定したテンプレートに対応
するディレクトリを返します。
オプションの解析前は nil を返します。... -
Shell
# dir -> String (15306.0) -
カレントディレクトリのパスを文字列で返します。
...カレントディレクトリのパスを文字列で返します。
使用例
require 'shell'
sh = Shell.new
p sh.cwd
# 例
#=> "/Users/kouya/tall"... -
Dir
# inspect -> String (15214.0) -
self の情報を人間に読みやすい文字列にして返します。
...self の情報を人間に読みやすい文字列にして返します。
//emlist[例][ruby]{
Dir.open("/") { |d| d.inspect } # => "#<Dir:/>"
//}... -
Dir
# path -> String (15209.0) -
オープンしているディレクトリのパス名を文字列で返します。
...オープンしているディレクトリのパス名を文字列で返します。
//emlist[例][ruby]{
Dir.open("..") do |d|
d.path # => ".."
d.to_path # => ".."
end
//}... -
Dir
# to _ path -> String (15209.0) -
オープンしているディレクトリのパス名を文字列で返します。
...オープンしているディレクトリのパス名を文字列で返します。
//emlist[例][ruby]{
Dir.open("..") do |d|
d.path # => ".."
d.to_path # => ".."
end
//}...