Assume that the scheme for a uri is "file". Also assume that the path starts with '.'
An example path is './.bashrc'. How would the fulluri look? 'file://./.bashrc' appears odd to me.
Assume that the scheme for a uri is "file". Also assume that the path starts with '.'
An example path is './.bashrc'. How would the fulluri look? 'file://./.bashrc' appears odd to me.
In short, a file URL takes the form of:
file://localhost/absolute/path/to/file [ok]
or you can omit the host (but not the slash):
file:///absolute/path/to/file [ok]
but not this:
file://file_at_current_dir [no way]
nor this:
file://./file_at_current_dir [no way]
I just confirmed that via Python's urllib2.urlopen()
More detail from http://en.wikipedia.org/wiki/File_URI_scheme:
"file:///foo.txt" is okay, while "file://foo.txt" is not,
although some interpreters manage to handle the latter
file_at_current_dir
at the root of the filesystem. I use Python in this example to really highlight the fact that there is no current directory when building strings. –
Tayib http://
or https://
scheme. But in a file://
scheme that the OP asks, it semantically depends on where the calling program's CWD is, even if that calling program manages to interpret that URI. In practice, where will you use that file://
uri anyway? If it is a CLI tool, you can completely avoid file://
and just fall back to old school local path. If it is in a browser, we can't assume its CWD either. –
Mitochondrion It's impossible to use full file: URI with '.' or '..' segments in path without root part of that path. Whether you use 'file://./.bashrc' or 'file:///./.bashrc' these paths will have no sense. If you want to use a relative link, use it without protocol/authority part:
<a href="./.bashrc">link</a>
If you want to use full URI, you must tell a root relative to which your relative path is:
<a href="file:///home/kindrik/./.bashrc">link</a>
According to RFC 3986
The path segments "." and "..", also known as dot-segments, are
defined for relative reference within the path name hierarchy. They
are intended for use at the beginning of a relative-path reference
(Section 4.2) to indicate relative position within the hierarchical
tree of names. This is similar to their role within some operating
systems' file directory structures to indicate the current directory
and parent directory, respectively. However, unlike in a file
system, these dot-segments are only interpreted within the URI path
hierarchy and are removed as part of the resolution process (Section
5.2).
The complete path segments "." and ".." are intended only for use
within relative references (Section 4.1) and are removed as part of
the reference resolution process (Section 5.2). However, some
deployed implementations incorrectly assume that reference resolution
is not necessary when the reference is already a URI and thus fail to
remove dot-segments when they occur in non-relative paths. URI
normalizers should remove dot-segments by applying the
remove_dot_segments algorithm to the path, as described in Section 5.2.4.
The complete path segments "." and ".." are intended only for use
within relative references (Section 4.1) and are removed as part of
the reference resolution process (Section 5.2)
RFC 3986 describes even an algorithm of removing these "." and ".." from URI.
In a terminal you could type "file://$PWD/.bashrc" using "$PWD" to refer to the current directory.
$PWD
contains whitespaces like C:/Users/Joshua Pinter/
then the path will not be valid. Needs to be escaped somehow. –
Lucerne file://${PWD// /\\ }/relative/path
–
Redneck +
. This has the additional note that URI permit UTF-8, so many Unicode characters (such as accented letters, emoji, symbols like §, etc.) actually require no encoding at all. Also of note: unencoded URI will be encoded automatically by user agents, so use as a string (containing spaces) may be a-OK. (Spaces are problems for shell expansion / process argument list building.) –
Tayib You should not put double slash after file:
. Correct form is
'file:.bashrc'
See RFC 3986, path-rootless
definition
//
), then make note of §2 of the RFC defining the file:
scheme which only permits path-absolute
. Relative file:
URI do not technically exist, even if certain systems allow them by convention. –
Tayib Invalid JSON-LD syntax; @context @id value must be an absolute IRI, a blank node identifier, or a keyword.
. I just want a relative ID, let me do that! –
Pyrochemical I don't know your use case.
I have a similar need in my node code, so when I need a file url relative to my working directory I create a url like so ...
const url = "file://" + process.cwd() + "/" + ".bashrc";
URIs are always absolute (unless they're relative URIs, which is a different beast without a schema). That comes from them being a server-client technology where referencing the server's working directory doesn't make sense. Then again, referencing the file system doesn't make sense in a server-client context either 🤷. Nevertheless, RFC 8089 permits only absolute paths:
The path component represents the absolute path to the file in the file system.
However, if I were to postulate a non-standard extension, I would choose the following syntax:
file:file.txt
file:./file.txt
The explanation is that RFC 8089 specifies non-local paths file://<FQDN of host>/path
and local paths file:/path
, file://localhost/path
, and file:///path
. Since we're almost certainly trying to specify a local relative path (ie, accessible by "local file system APIs"), and because a .
is not a FQDN or even a hostname, the simple file:
scheme + scheme-sepecific-part URI syntax makes the most sense.
file:./file.txt
for relative path is a fix that works for generic url! –
London In a unix shell script I managed to go with this:
file://`pwd`/relative-path
In your particular case:
file://`pwd`/.bashrc
There is a workaround that might help.
If at development time you can only specify a relative path to the file but need a URL (that requires to know the absolute path) use code like this (Java):
new File("relative/path/to/file").toURI().toURL();
With that you get a URL still pointing to the file in a relative path. It still shows in the URL but it can be opened. If you want to get rid of components like ".." use the canoncial path inbetween. Here is an example that works for me:
public static void main(String[] args) throws MalformedURLException, IOException {
File f = new File("../SimResolver/pom.xml");
System.out.println(f);
System.out.println(f.getAbsolutePath());
System.out.println(f.getCanonicalPath());
System.out.println(f.toURI());
System.out.println(f.toURI().toURL());
System.out.println(f.getCanonicalFile().toURI());
System.out.println(f.getCanonicalFile().toURI().toURL());
InputStream in = f.toURI().toURL().openStream();
byte[] buffer = new byte[8192];
int read = in.read(buffer);
while (read >= 0) {
System.out.write(buffer, 0, read);
read = in.read(buffer);
}
}
© 2022 - 2025 — McMap. All rights reserved.
%20
= space); depending on the application you will likely need to replace the escaped characters with their actual representation. – Lauralfile://
support. bugs.chromium.org/p/chromium/issues/detail?id=1299624 – Guidon