uri - So what IS the right direction of the path's slash (/ or \) under Windows? -
It seems that windows emphasizes writing a backslash \
in the file path, while NIT's URI class writes them with slash /
. Is there a right way, which is accepted even in the most primitive systems? And why is it? Does Net's URI show a second slash in comparison to the rest?
A file path and a URI is different \
in a Windows file path Is correct and correct in the /
one URI.
Then this file path: C: \ Documents \ FU
translates this URI: file: ///.c: / document / foo
Comments
Post a Comment