summaryrefslogtreecommitdiffstats
path: root/Lib/nturl2path.py
blob: a25dc2a17ae6b5c78dcbe6676cd67084b3bc2ae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# nturl2path convert a NT pathname to a file URL and 
# vice versa  

def url2pathname(url):
	""" Convert a URL to a DOS path...
		///C|/foo/bar/spam.foo

			becomes

		C:\foo\bar\spam.foo
	"""
	import string
	if not '|' in url:
	    # No drive specifier, just convert slashes
	    components = string.splitfields(url, '/')
	    return string.joinfields(components, '\\')
	comp = string.splitfields(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])
	components = string.splitfields(comp[1], '/')
	path = drive + ':'
	for  comp in components:
		if comp:
			path = path + '\\' + comp
	return path

def pathname2url(p):

	""" Convert a DOS path name to a file url...
		C:\foo\bar\spam.foo

			becomes

		///C|/foo/bar/spam.foo
	"""

	import string
	if not ':' in p:
	    # No drive specifier, just convert slashes
	    components = string.splitfields(p, '\\')
	    return string.joinfields(components, '/')
	comp = string.splitfields(p, ':')
	if len(comp) != 2 or len(comp[0]) > 1:
		error = 'Bad path: ' + p
		raise IOError, error

	drive = string.upper(comp[0])
	components = string.splitfields(comp[1], '\\')
	path = '///' + drive + '|'
	for comp in components:
		if comp:
			path = path + '/' + comp
	return path