20件ヒット
[1-20件を表示]
(0.073秒)
別のキーワード
検索結果
先頭2件
-
Net
:: FTP # mlsd(pathname = nil) -> [Net :: FTP :: MLSxEntry] (18121.0) -
pathname で指定したディレクトリに含まれているファイルの詳細な情報を得ます。
...るコマンドとして
MLST/MLSD が定義されました。
@param pathname 情報を得るディレクトリ名
@see Net::FTP#mlst
require 'net/ftp'
Net::FTP.open("ftp.example.org") do |ftp|
ftp.login("anonymous", "foobar@example.com")
p ftp.mlsd("/")
# =>
# [#<Net::FTP... -
Net
:: FTP # mlsd(pathname = nil) {|entry| . . . } -> () (18121.0) -
pathname で指定したディレクトリに含まれているファイルの詳細な情報を得ます。
...るコマンドとして
MLST/MLSD が定義されました。
@param pathname 情報を得るディレクトリ名
@see Net::FTP#mlst
require 'net/ftp'
Net::FTP.open("ftp.example.org") do |ftp|
ftp.login("anonymous", "foobar@example.com")
p ftp.mlsd("/")
# =>
# [#<Net::FTP...