ReadonlyauthorityAuthority is the www.example.com part of http://www.example.com/some/path?query#fragment.
The part between the first double slashes and the next slash.
ReadonlyfragmentFragment is the fragment part of http://www.example.com/some/path?query#fragment.
ReadonlyfsThe string representing the corresponding file system path of this Uri.
Will handle UNC paths and normalize windows drive letters to lower-case. Also uses the platform specific path separator.
readFile et al.The difference to the path-property is the use of the platform specific
path separator and the handling of UNC paths. The sample below outlines the difference:
const u = URI.parse('file://server/c$/folder/file.txt')
u.authority === 'server'
u.path === '/c$/folder/file.txt'
u.fsPath === '\\server\c$\folder\file.txt'
ReadonlypathPath is the /some/path part of http://www.example.com/some/path?query#fragment.
ReadonlyqueryQuery is the query part of http://www.example.com/some/path?query#fragment.
ReadonlyschemeScheme is the http part of http://www.example.com/some/path?query#fragment.
The part before the first colon.
Returns a JSON representation of this Uri.
An object.
Returns a string representation of this Uri. The representation and normalization of a URI depends on the scheme.
Note that the implementation will encode aggressive which often leads to unexpected,
but not incorrect, results. For instance, colons are encoded to %3A which might be unexpected
in file-uri. Also & and = will be encoded which might be unexpected for http-uris. For stability
reasons this cannot be changed anymore. If you suffer from too aggressive encoding you should use
the skipEncoding-argument: uri.toString(true).
OptionalskipEncoding: booleanDo not percentage-encode the result, defaults to false. Note that
the # and ? characters occurring in the path will always be encoded.
A string representation of this Uri.
Derive a new Uri from this Uri.
let file = Uri.parse('before:some/file/path');
let other = file.with({ scheme: 'after' });
assert.ok(other.toString() === 'after:some/file/path');
An object that describes a change to this Uri. To unset components use null or
the empty string.
Optionalauthority?: stringThe new authority, defaults to this Uri's authority.
Optionalfragment?: stringThe new fragment, defaults to this Uri's fragment.
Optionalpath?: stringThe new path, defaults to this Uri's path.
Optionalquery?: stringThe new query, defaults to this Uri's query.
Optionalscheme?: stringThe new scheme, defaults to this Uri's scheme.
A new Uri that reflects the given change. Will return this Uri if the change
is not changing anything.
StaticfileCreate an URI from a file system path. The scheme
will be file.
The difference between Uri.parse and Uri.file is that the latter treats the argument
as path, not as stringified-uri. E.g. Uri.file(path) is not the same as
Uri.parse('file://' + path) because the path might contain characters that are
interpreted (# and ?). See the following sample:
const good = URI.file('/coding/c#/project1');
good.scheme === 'file';
good.path === '/coding/c#/project1';
good.fragment === '';
const bad = URI.parse('file://' + '/coding/c#/project1');
bad.scheme === 'file';
bad.path === '/coding/c'; // path is now broken
bad.fragment === '/project1';
A file system or UNC path.
A new Uri instance.
StaticfromCreate an URI from its component parts
The component parts of an Uri.
Optional Readonlyauthority?: stringThe authority of the uri
Optional Readonlyfragment?: stringThe fragment identifier of the uri
Optional Readonlypath?: stringThe path of the uri
Optional Readonlyquery?: stringThe query string of the uri
Readonlyscheme: stringThe scheme of the uri
A new Uri instance.
StaticjoinCreate a new uri which path is the result of joining the path of the base uri with the provided path segments.
joinPath only affects the path component
and all other components (scheme, authority, query, and fragment) are
left as they are.The path segments are normalized in the following ways:
/ or \) are replaced with a single separatorfile-uris on windows, the backslash-character (``) is considered a path-separator..-segment denotes the parent segment, the . denotes the current segmentjoinPath(Uri.file('file:///c:/root'), '../../other').fsPath === 'c:/other'An uri. Must have a path.
One more more path fragments
A new uri which path is joined with the given fragments
StaticparseCreate an URI from a string, e.g. http://www.example.com/some/path,
file:///usr/home, or scheme:with/path.
Note that for a while uris without a scheme were accepted. That is not correct
as all uris should have a scheme. To avoid breakage of existing code the optional
strict-argument has been added. We strongly advise to use it, e.g. Uri.parse('my:uri', true)
The string value of an Uri.
Optionalstrict: booleanThrow an error when value is empty or when no scheme can be parsed.
A new Uri instance.
A universal resource identifier representing either a file on disk or another resource, like untitled resources.