本文簡要介紹ruby語言中 URI::FTP.build
的用法。
用法
build(args)
說明
從組件創建一個新的 URI::FTP
對象,並進行語法檢查。
接受的組件是 userinfo
、 host
、 port
、 path
和 typecode
。
組件應以 Array
或 Hash
的形式提供,其鍵由組件名稱前加冒號構成。
如果使用 Array
,則組件必須按 [userinfo, host, port, path, typecode]
的順序傳遞。
如果提供的路徑是絕對的,它將被轉義以使其在 URI
中成為絕對路徑。
例子:
require 'uri'
uri1 = URI::FTP.build(['user:password', 'ftp.example.com', nil,
'/path/file.zip', 'i'])
uri1.to_s # => "ftp://user:password@ftp.example.com/%2Fpath/file.zip;type=i"
uri2 = URI::FTP.build({:host => 'ftp.example.com',
:path => 'ruby/src'})
uri2.to_s # => "ftp://ftp.example.com/ruby/src"
調用超類方法
相關用法
- Ruby FTP.typecode=用法及代碼示例
- Ruby Float arg()用法及代碼示例
- Ruby File.identical?用法及代碼示例
- Ruby Fiber.schedule用法及代碼示例
- Ruby Float fdiv()用法及代碼示例
- Ruby Float quo()用法及代碼示例
- Ruby Float angle()用法及代碼示例
- Ruby FileUtils.mkdir用法及代碼示例
- Ruby Float divmod()用法及代碼示例
- Ruby Float.self - other用法及代碼示例
- Ruby Float.rationalize用法及代碼示例
- Ruby Float.truncate用法及代碼示例
- Ruby FileUtils.compare_file用法及代碼示例
- Ruby FileUtils.options_of用法及代碼示例
- Ruby File.dirname用法及代碼示例
- Ruby Formatter.random_bytes用法及代碼示例
- Ruby Float prev_float()用法及代碼示例
- Ruby FileUtils.ln_s用法及代碼示例
- Ruby Float round()用法及代碼示例
- Ruby Float denominator()用法及代碼示例
- Ruby Float numerator()用法及代碼示例
- Ruby Float absolute()用法及代碼示例
- Ruby Float to_i()用法及代碼示例
- Ruby Fiddle.dlwrap用法及代碼示例
- Ruby Float nan?()用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 FTP.build。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。