Class

The “file” URI is defined by RFC8089.

Constants

A Default port of nil for URI::File.

An Array of the available components for URI::File.

Class Methods

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].

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"
Instance Methods

Protected setter for the host component v.

See also URI::Generic.host=.

do nothing

do nothing

do nothing

do nothing