cpython/Lib/dos-8x3/nturl2pa.py

67 lines
1.8 KiB
Python
Raw Normal View History

2000-05-08 14:31:04 -03:00
"""Convert a NT pathname to a file URL and vice versa."""
def url2pathname(url):
2000-06-29 16:35:29 -03:00
r"""Convert a URL to a DOS path.
///C|/foo/bar/spam.foo
becomes
C:\foo\bar\spam.foo
"""
1999-04-08 17:27:54 -03:00
import string, urllib
1997-08-14 21:45:26 -03:00
if not '|' in url:
# No drive specifier, just convert slashes
1999-04-08 17:27:54 -03:00
if url[:4] == '////':
# path is something like ////host/path/on/remote/host
# convert this to \\host\path\on\remote\host
# (notice halving of slashes at the start of the path)
url = url[2:]
components = string.split(url, '/')
# make sure not to convert quoted slashes :-)
return urllib.unquote(string.join(components, '\\'))
comp = string.split(url, '|')
if len(comp) != 2 or comp[0][-1] not in string.letters:
error = 'Bad URL: ' + url
raise IOError, error
drive = string.upper(comp[0][-1])
1999-04-08 17:27:54 -03:00
components = string.split(comp[1], '/')
path = drive + ':'
for comp in components:
if comp:
1999-04-08 17:27:54 -03:00
path = path + '\\' + urllib.unquote(comp)
return path
def pathname2url(p):
2000-06-29 16:35:29 -03:00
r"""Convert a DOS path name to a file url.
C:\foo\bar\spam.foo
becomes
///C|/foo/bar/spam.foo
"""
1999-04-08 17:27:54 -03:00
import string, urllib
1997-08-14 21:45:26 -03:00
if not ':' in p:
1999-04-08 17:27:54 -03:00
# No drive specifier, just convert slashes and quote the name
if p[:2] == '\\\\':
# path is something like \\host\path\on\remote\host
# convert this to ////host/path/on/remote/host
# (notice doubling of slashes at the start of the path)
p = '\\\\' + p
components = string.split(p, '\\')
return urllib.quote(string.join(components, '/'))
comp = string.split(p, ':')
if len(comp) != 2 or len(comp[0]) > 1:
error = 'Bad path: ' + p
raise IOError, error
1999-04-08 17:27:54 -03:00
drive = urllib.quote(string.upper(comp[0]))
components = string.split(comp[1], '\\')
path = '///' + drive + '|'
for comp in components:
if comp:
1999-04-08 17:27:54 -03:00
path = path + '/' + urllib.quote(comp)
return path