The “file” URI
is defined by RFC8089.
Methods
- B
- C
- S
Constants
COMPONENT | = | [ :scheme, :host, :path ].freeze |
DEFAULT_PORT | = | nil |
A Default port of nil for |
Class Public methods
build(args) Link
Description
Creates a new URI::File
object from components, with syntax checking.
The components accepted are host
and path
.
The components should be provided either as an Array
, or as a Hash
with keys formed by preceding the component names with a colon.
If an Array
is used, the components must be passed in the order [host, path]
.
A path from e.g. the File
class should be escaped before being passed.
Examples:
require 'uri'
uri1 = URI::File.build(['host.example.com', '/path/file.zip'])
uri1.to_s # => "file://host.example.com/path/file.zip"
uri2 = URI::File.build({:host => 'host.example.com',
:path => '/ruby/src'})
uri2.to_s # => "file://host.example.com/ruby/src"
uri3 = URI::File.build({:path => URI::escape('/path/my file.txt')})
uri3.to_s # => "file:///path/my%20file.txt"
Instance Public methods
check_password(user) Link
raise InvalidURIError
check_user(user) Link
raise InvalidURIError
check_userinfo(user) Link
raise InvalidURIError
set_host(v) Link
Protected setter for the host component v
.
See also URI::Generic.host=
.
set_password(v) Link
do nothing
set_port(v) Link
do nothing
set_user(v) Link
do nothing