Guido van Rossum | 54f22ed | 2000-02-04 15:10:34 +0000 | [diff] [blame] | 1 | """Convert a NT pathname to a file URL and vice versa.""" |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 2 | |
| 3 | def url2pathname(url): |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 4 | r"""Convert a URL to a DOS path. |
Guido van Rossum | 7f91cf9 | 2000-05-30 13:25:35 +0000 | [diff] [blame] | 5 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 6 | ///C|/foo/bar/spam.foo |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 7 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 8 | becomes |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 9 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 10 | C:\foo\bar\spam.foo |
| 11 | """ |
| 12 | import string, urllib |
| 13 | if not '|' in url: |
| 14 | # No drive specifier, just convert slashes |
| 15 | if url[:4] == '////': |
| 16 | # path is something like ////host/path/on/remote/host |
| 17 | # convert this to \\host\path\on\remote\host |
| 18 | # (notice halving of slashes at the start of the path) |
| 19 | url = url[2:] |
| 20 | components = string.split(url, '/') |
| 21 | # make sure not to convert quoted slashes :-) |
| 22 | return urllib.unquote(string.join(components, '\\')) |
| 23 | comp = string.split(url, '|') |
| 24 | if len(comp) != 2 or comp[0][-1] not in string.letters: |
| 25 | error = 'Bad URL: ' + url |
| 26 | raise IOError, error |
| 27 | drive = string.upper(comp[0][-1]) |
| 28 | components = string.split(comp[1], '/') |
| 29 | path = drive + ':' |
| 30 | for comp in components: |
| 31 | if comp: |
| 32 | path = path + '\\' + urllib.unquote(comp) |
| 33 | return path |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 34 | |
| 35 | def pathname2url(p): |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 36 | r"""Convert a DOS path name to a file url. |
Guido van Rossum | 7f91cf9 | 2000-05-30 13:25:35 +0000 | [diff] [blame] | 37 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 38 | C:\foo\bar\spam.foo |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 39 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 40 | becomes |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 41 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 42 | ///C|/foo/bar/spam.foo |
| 43 | """ |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 44 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 45 | import string, urllib |
| 46 | if not ':' in p: |
| 47 | # No drive specifier, just convert slashes and quote the name |
| 48 | if p[:2] == '\\\\': |
| 49 | # path is something like \\host\path\on\remote\host |
| 50 | # convert this to ////host/path/on/remote/host |
| 51 | # (notice doubling of slashes at the start of the path) |
| 52 | p = '\\\\' + p |
| 53 | components = string.split(p, '\\') |
| 54 | return urllib.quote(string.join(components, '/')) |
| 55 | comp = string.split(p, ':') |
| 56 | if len(comp) != 2 or len(comp[0]) > 1: |
| 57 | error = 'Bad path: ' + p |
| 58 | raise IOError, error |
Guido van Rossum | 746ea35 | 1996-06-26 19:47:56 +0000 | [diff] [blame] | 59 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 60 | drive = urllib.quote(string.upper(comp[0])) |
| 61 | components = string.split(comp[1], '\\') |
| 62 | path = '///' + drive + '|' |
| 63 | for comp in components: |
| 64 | if comp: |
| 65 | path = path + '/' + urllib.quote(comp) |
| 66 | return path |