Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 1 | # Module 'ntpath' -- common operations on WinNT/Win95 pathnames |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 2 | """Common pathname manipulations, WindowsNT/95 version. |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 3 | |
| 4 | Instead of importing this module directly, import os and refer to this |
| 5 | module as os.path. |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 6 | """ |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 7 | |
| 8 | import os |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 9 | import sys |
Christian Heimes | 05e8be1 | 2008-02-23 18:30:17 +0000 | [diff] [blame] | 10 | import stat |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 11 | import genericpath |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 12 | from genericpath import * |
Skip Montanaro | 4d5d5bf | 2000-07-13 01:01:03 +0000 | [diff] [blame] | 13 | |
Skip Montanaro | 269b83b | 2001-02-06 01:07:02 +0000 | [diff] [blame] | 14 | __all__ = ["normcase","isabs","join","splitdrive","split","splitext", |
| 15 | "basename","dirname","commonprefix","getsize","getmtime", |
Georg Brandl | f0de6a1 | 2005-08-22 18:02:59 +0000 | [diff] [blame] | 16 | "getatime","getctime", "islink","exists","lexists","isdir","isfile", |
Benjamin Peterson | d71ca41 | 2008-05-08 23:44:58 +0000 | [diff] [blame] | 17 | "ismount", "expanduser","expandvars","normpath","abspath", |
Georg Brandl | f0de6a1 | 2005-08-22 18:02:59 +0000 | [diff] [blame] | 18 | "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 19 | "extsep","devnull","realpath","supports_unicode_filenames","relpath", |
Brian Curtin | 6285774 | 2010-09-06 17:07:27 +0000 | [diff] [blame] | 20 | "samefile", "sameopenfile",] |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 21 | |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 22 | # strings representing various path-related bits and pieces |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 23 | # These are primarily for export; internally, they are hardcoded. |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 24 | curdir = '.' |
| 25 | pardir = '..' |
| 26 | extsep = '.' |
| 27 | sep = '\\' |
| 28 | pathsep = ';' |
Skip Montanaro | 9ddac3e | 2003-03-28 22:23:24 +0000 | [diff] [blame] | 29 | altsep = '/' |
Andrew MacIntyre | 437966c | 2003-02-17 09:17:50 +0000 | [diff] [blame] | 30 | defpath = '.;C:\\bin' |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 31 | if 'ce' in sys.builtin_module_names: |
| 32 | defpath = '\\Windows' |
| 33 | elif 'os2' in sys.builtin_module_names: |
Andrew MacIntyre | 437966c | 2003-02-17 09:17:50 +0000 | [diff] [blame] | 34 | # OS/2 w/ VACPP |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 35 | altsep = '/' |
Martin v. Löwis | bdec50f | 2004-06-08 08:29:33 +0000 | [diff] [blame] | 36 | devnull = 'nul' |
Skip Montanaro | 117910d | 2003-02-14 19:35:31 +0000 | [diff] [blame] | 37 | |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 38 | def _get_empty(path): |
| 39 | if isinstance(path, bytes): |
| 40 | return b'' |
| 41 | else: |
| 42 | return '' |
| 43 | |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 44 | def _get_sep(path): |
| 45 | if isinstance(path, bytes): |
| 46 | return b'\\' |
| 47 | else: |
| 48 | return '\\' |
| 49 | |
| 50 | def _get_altsep(path): |
| 51 | if isinstance(path, bytes): |
| 52 | return b'/' |
| 53 | else: |
| 54 | return '/' |
| 55 | |
| 56 | def _get_bothseps(path): |
| 57 | if isinstance(path, bytes): |
| 58 | return b'\\/' |
| 59 | else: |
| 60 | return '\\/' |
| 61 | |
| 62 | def _get_dot(path): |
| 63 | if isinstance(path, bytes): |
| 64 | return b'.' |
| 65 | else: |
| 66 | return '.' |
| 67 | |
| 68 | def _get_colon(path): |
| 69 | if isinstance(path, bytes): |
| 70 | return b':' |
| 71 | else: |
| 72 | return ':' |
| 73 | |
Georg Brandl | cfb6821 | 2010-07-31 21:40:15 +0000 | [diff] [blame] | 74 | def _get_special(path): |
| 75 | if isinstance(path, bytes): |
| 76 | return (b'\\\\.\\', b'\\\\?\\') |
| 77 | else: |
| 78 | return ('\\\\.\\', '\\\\?\\') |
| 79 | |
Guido van Rossum | e2ad88c | 1997-08-12 14:46:58 +0000 | [diff] [blame] | 80 | # Normalize the case of a pathname and map slashes to backslashes. |
| 81 | # Other normalizations (such as optimizing '../' away) are not done |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 82 | # (this is done by normpath). |
Guido van Rossum | e2ad88c | 1997-08-12 14:46:58 +0000 | [diff] [blame] | 83 | |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 84 | def normcase(s): |
Guido van Rossum | 16a0bc2 | 1998-02-18 13:48:31 +0000 | [diff] [blame] | 85 | """Normalize case of pathname. |
| 86 | |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 87 | Makes all characters lowercase and all slashes into backslashes.""" |
Ezio Melotti | 5a3ef5b | 2010-06-25 10:56:11 +0000 | [diff] [blame] | 88 | if not isinstance(s, (bytes, str)): |
| 89 | raise TypeError("normcase() argument must be str or bytes, " |
| 90 | "not '{}'".format(s.__class__.__name__)) |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 91 | return s.replace(_get_altsep(s), _get_sep(s)).lower() |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 92 | |
Guido van Rossum | 77e1db3 | 1997-06-02 23:11:57 +0000 | [diff] [blame] | 93 | |
Fred Drake | ef0b5dd | 2000-02-17 17:30:40 +0000 | [diff] [blame] | 94 | # Return whether a path is absolute. |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 95 | # Trivial in Posix, harder on Windows. |
| 96 | # For Windows it is absolute if it starts with a slash or backslash (current |
| 97 | # volume), or if a pathname after the volume-letter-and-colon or UNC-resource |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 98 | # starts with a slash or backslash. |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 99 | |
| 100 | def isabs(s): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 101 | """Test whether a path is absolute""" |
| 102 | s = splitdrive(s)[1] |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 103 | return len(s) > 0 and s[:1] in _get_bothseps(s) |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 104 | |
| 105 | |
Guido van Rossum | 77e1db3 | 1997-06-02 23:11:57 +0000 | [diff] [blame] | 106 | # Join two (or more) paths. |
| 107 | |
Barry Warsaw | 384d249 | 1997-02-18 21:53:25 +0000 | [diff] [blame] | 108 | def join(a, *p): |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 109 | """Join two or more pathname components, inserting "\\" as needed. |
| 110 | If any component is an absolute path, all previous path components |
| 111 | will be discarded.""" |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 112 | sep = _get_sep(a) |
| 113 | seps = _get_bothseps(a) |
| 114 | colon = _get_colon(a) |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 115 | path = a |
| 116 | for b in p: |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 117 | b_wins = 0 # set to 1 iff b makes path irrelevant |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 118 | if not path: |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 119 | b_wins = 1 |
Tim Peters | 1bdd0f2 | 2001-07-19 17:18:18 +0000 | [diff] [blame] | 120 | |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 121 | elif isabs(b): |
| 122 | # This probably wipes out path so far. However, it's more |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 123 | # complicated if path begins with a drive letter. You get a+b |
| 124 | # (minus redundant slashes) in these four cases: |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 125 | # 1. join('c:', '/a') == 'c:/a' |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 126 | # 2. join('//computer/share', '/a') == '//computer/share/a' |
| 127 | # 3. join('c:/', '/a') == 'c:/a' |
| 128 | # 4. join('//computer/share/', '/a') == '//computer/share/a' |
| 129 | # But b wins in all of these cases: |
| 130 | # 5. join('c:/a', '/b') == '/b' |
| 131 | # 6. join('//computer/share/a', '/b') == '/b' |
| 132 | # 7. join('c:', 'd:/') == 'd:/' |
| 133 | # 8. join('c:', '//computer/share/') == '//computer/share/' |
| 134 | # 9. join('//computer/share', 'd:/') == 'd:/' |
| 135 | # 10. join('//computer/share', '//computer/share/') == '//computer/share/' |
| 136 | # 11. join('c:/', 'd:/') == 'd:/' |
| 137 | # 12. join('c:/', '//computer/share/') == '//computer/share/' |
| 138 | # 13. join('//computer/share/', 'd:/') == 'd:/' |
| 139 | # 14. join('//computer/share/', '//computer/share/') == '//computer/share/' |
| 140 | b_prefix, b_rest = splitdrive(b) |
Tim Peters | 1bdd0f2 | 2001-07-19 17:18:18 +0000 | [diff] [blame] | 141 | |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 142 | # if b has a prefix, it always wins. |
| 143 | if b_prefix: |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 144 | b_wins = 1 |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 145 | else: |
| 146 | # b doesn't have a prefix. |
| 147 | # but isabs(b) returned true. |
| 148 | # and therefore b_rest[0] must be a slash. |
| 149 | # (but let's check that.) |
| 150 | assert(b_rest and b_rest[0] in seps) |
| 151 | |
| 152 | # so, b still wins if path has a rest that's more than a sep. |
| 153 | # you get a+b if path_rest is empty or only has a sep. |
| 154 | # (see cases 1-4 for times when b loses.) |
| 155 | path_rest = splitdrive(path)[1] |
| 156 | b_wins = path_rest and path_rest not in seps |
Tim Peters | 1bdd0f2 | 2001-07-19 17:18:18 +0000 | [diff] [blame] | 157 | |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 158 | if b_wins: |
| 159 | path = b |
| 160 | else: |
| 161 | # Join, and ensure there's a separator. |
| 162 | assert len(path) > 0 |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 163 | if path[-1:] in seps: |
| 164 | if b and b[:1] in seps: |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 165 | path += b[1:] |
| 166 | else: |
| 167 | path += b |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 168 | elif path[-1:] == colon: |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 169 | path += b |
| 170 | elif b: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 171 | if b[:1] in seps: |
Tim Peters | 33dc0a1 | 2001-07-27 08:09:54 +0000 | [diff] [blame] | 172 | path += b |
| 173 | else: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 174 | path += sep + b |
Tim Peters | 6a3e5f1 | 2001-11-05 21:25:02 +0000 | [diff] [blame] | 175 | else: |
| 176 | # path is not empty and does not end with a backslash, |
| 177 | # but b is empty; since, e.g., split('a/') produces |
| 178 | # ('a', ''), it's best if join() adds a backslash in |
| 179 | # this case. |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 180 | path += sep |
Tim Peters | 1bdd0f2 | 2001-07-19 17:18:18 +0000 | [diff] [blame] | 181 | |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 182 | return path |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 183 | |
| 184 | |
| 185 | # Split a path in a drive specification (a drive letter followed by a |
Guido van Rossum | f3c695c | 1999-04-06 19:32:19 +0000 | [diff] [blame] | 186 | # colon) and the path specification. |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 187 | # It is always true that drivespec + pathspec == p |
| 188 | def splitdrive(p): |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 189 | """Split a pathname into drive/UNC sharepoint and relative path specifiers. |
| 190 | Returns a 2-tuple (drive_or_unc, path); either part may be empty. |
| 191 | |
| 192 | If you assign |
| 193 | result = splitdrive(p) |
| 194 | It is always true that: |
| 195 | result[0] + result[1] == p |
| 196 | |
| 197 | If the path contained a drive letter, drive_or_unc will contain everything |
| 198 | up to and including the colon. e.g. splitdrive("c:/dir") returns ("c:", "/dir") |
| 199 | |
| 200 | If the path contained a UNC path, the drive_or_unc will contain the host name |
| 201 | and share up to but not including the fourth directory separator character. |
| 202 | e.g. splitdrive("//host/computer/dir") returns ("//host/computer", "/dir") |
| 203 | |
| 204 | Paths cannot contain both a drive letter and a UNC path. |
| 205 | |
| 206 | """ |
| 207 | empty = _get_empty(p) |
| 208 | if len(p) > 1: |
| 209 | sep = _get_sep(p) |
| 210 | normp = normcase(p) |
| 211 | if (normp[0:2] == sep*2) and (normp[2:3] != sep): |
| 212 | # is a UNC path: |
| 213 | # vvvvvvvvvvvvvvvvvvvv drive letter or UNC path |
| 214 | # \\machine\mountpoint\directory\etc\... |
| 215 | # directory ^^^^^^^^^^^^^^^ |
| 216 | index = normp.find(sep, 2) |
| 217 | if index == -1: |
| 218 | return empty, p |
| 219 | index2 = normp.find(sep, index + 1) |
| 220 | # a UNC path can't have two slashes in a row |
| 221 | # (after the initial two) |
| 222 | if index2 == index + 1: |
| 223 | return empty, p |
| 224 | if index2 == -1: |
| 225 | index2 = len(p) |
| 226 | return p[:index2], p[index2:] |
| 227 | if normp[1:2] == _get_colon(p): |
| 228 | return p[:2], p[2:] |
| 229 | return empty, p |
Guido van Rossum | f3c695c | 1999-04-06 19:32:19 +0000 | [diff] [blame] | 230 | |
| 231 | |
| 232 | # Parse UNC paths |
| 233 | def splitunc(p): |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 234 | """Deprecated since Python 3.1. Please use splitdrive() instead; |
| 235 | it now handles UNC paths. |
| 236 | |
| 237 | Split a pathname into UNC mount point and relative path specifiers. |
Guido van Rossum | f3c695c | 1999-04-06 19:32:19 +0000 | [diff] [blame] | 238 | |
| 239 | Return a 2-tuple (unc, rest); either part may be empty. |
| 240 | If unc is not empty, it has the form '//host/mount' (or similar |
| 241 | using backslashes). unc+rest is always the input path. |
| 242 | Paths containing drive letters never have an UNC part. |
| 243 | """ |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 244 | import warnings |
| 245 | warnings.warn("ntpath.splitunc is deprecated, use ntpath.splitdrive instead", |
Gregory P. Smith | aa3b5b8 | 2009-06-30 05:33:50 +0000 | [diff] [blame] | 246 | DeprecationWarning) |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 247 | sep = _get_sep(p) |
| 248 | if not p[1:2]: |
| 249 | return p[:0], p # Drive letter present |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 250 | firstTwo = p[0:2] |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 251 | if normcase(firstTwo) == sep + sep: |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 252 | # is a UNC path: |
| 253 | # vvvvvvvvvvvvvvvvvvvv equivalent to drive letter |
| 254 | # \\machine\mountpoint\directories... |
| 255 | # directory ^^^^^^^^^^^^^^^ |
| 256 | normp = normcase(p) |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 257 | index = normp.find(sep, 2) |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 258 | if index == -1: |
| 259 | ##raise RuntimeError, 'illegal UNC path: "' + p + '"' |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 260 | return (p[:0], p) |
| 261 | index = normp.find(sep, index + 1) |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 262 | if index == -1: |
| 263 | index = len(p) |
| 264 | return p[:index], p[index:] |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 265 | return p[:0], p |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 266 | |
| 267 | |
| 268 | # Split a path in head (everything up to the last '/') and tail (the |
Guido van Rossum | 8f0fa9e | 1999-03-19 21:05:12 +0000 | [diff] [blame] | 269 | # rest). After the trailing '/' is stripped, the invariant |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 270 | # join(head, tail) == p holds. |
| 271 | # The resulting head won't end in '/' unless it is the root. |
| 272 | |
| 273 | def split(p): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 274 | """Split a pathname. |
| 275 | |
| 276 | Return tuple (head, tail) where tail is everything after the final slash. |
| 277 | Either part may be empty.""" |
Guido van Rossum | 8f0fa9e | 1999-03-19 21:05:12 +0000 | [diff] [blame] | 278 | |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 279 | seps = _get_bothseps(p) |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 280 | d, p = splitdrive(p) |
Guido van Rossum | 8f0fa9e | 1999-03-19 21:05:12 +0000 | [diff] [blame] | 281 | # set i to index beyond p's last slash |
| 282 | i = len(p) |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 283 | while i and p[i-1] not in seps: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 284 | i -= 1 |
Guido van Rossum | 8f0fa9e | 1999-03-19 21:05:12 +0000 | [diff] [blame] | 285 | head, tail = p[:i], p[i:] # now tail has no slashes |
| 286 | # remove trailing slashes from head, unless it's all slashes |
| 287 | head2 = head |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 288 | while head2 and head2[-1:] in seps: |
Guido van Rossum | 8f0fa9e | 1999-03-19 21:05:12 +0000 | [diff] [blame] | 289 | head2 = head2[:-1] |
| 290 | head = head2 or head |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 291 | return d + head, tail |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 292 | |
| 293 | |
| 294 | # Split a path in root and extension. |
Guido van Rossum | 73e122f | 1997-01-22 00:17:26 +0000 | [diff] [blame] | 295 | # The extension is everything starting at the last dot in the last |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 296 | # pathname component; the root is everything before that. |
| 297 | # It is always true that root + ext == p. |
| 298 | |
| 299 | def splitext(p): |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 300 | return genericpath._splitext(p, _get_sep(p), _get_altsep(p), |
| 301 | _get_dot(p)) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 302 | splitext.__doc__ = genericpath._splitext.__doc__ |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 303 | |
| 304 | |
| 305 | # Return the tail (basename) part of a path. |
| 306 | |
| 307 | def basename(p): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 308 | """Returns the final component of a pathname""" |
| 309 | return split(p)[1] |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 310 | |
| 311 | |
| 312 | # Return the head (dirname) part of a path. |
| 313 | |
| 314 | def dirname(p): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 315 | """Returns the directory component of a pathname""" |
| 316 | return split(p)[0] |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 317 | |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 318 | # Is a path a symbolic link? |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 319 | # This will always return false on systems where os.lstat doesn't exist. |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 320 | |
| 321 | def islink(path): |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 322 | """Test whether a path is a symbolic link. |
| 323 | This will always return false for Windows prior to 6.0 |
| 324 | and for OS/2. |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 325 | """ |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 326 | try: |
| 327 | st = os.lstat(path) |
| 328 | except (os.error, AttributeError): |
| 329 | return False |
| 330 | return stat.S_ISLNK(st.st_mode) |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 331 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 332 | # Being true for dangling symbolic links is also useful. |
| 333 | |
| 334 | def lexists(path): |
| 335 | """Test whether a path exists. Returns True for broken symbolic links""" |
| 336 | try: |
| 337 | st = os.lstat(path) |
| 338 | except (os.error, WindowsError): |
| 339 | return False |
| 340 | return True |
Johannes Gijsbers | ae882f7 | 2004-08-30 10:19:56 +0000 | [diff] [blame] | 341 | |
Guido van Rossum | f3c695c | 1999-04-06 19:32:19 +0000 | [diff] [blame] | 342 | # Is a path a mount point? Either a root (with or without drive letter) |
| 343 | # or an UNC path with at most a / or \ after the mount point. |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 344 | |
| 345 | def ismount(path): |
Guido van Rossum | ca99c2c | 1998-01-19 22:25:59 +0000 | [diff] [blame] | 346 | """Test whether a path is a mount point (defined as root of drive)""" |
Benjamin Peterson | 48e2478 | 2009-03-29 13:02:52 +0000 | [diff] [blame] | 347 | seps = _get_bothseps(path) |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 348 | root, rest = splitdrive(path) |
| 349 | if root and root[0] in seps: |
| 350 | return (not rest) or (rest in seps) |
| 351 | return rest in seps |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 352 | |
| 353 | |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 354 | # Expand paths beginning with '~' or '~user'. |
| 355 | # '~' means $HOME; '~user' means that user's home directory. |
| 356 | # If the path doesn't begin with '~', or if the user or $HOME is unknown, |
| 357 | # the path is returned unchanged (leaving error reporting to whatever |
| 358 | # function is called with the expanded path as argument). |
| 359 | # See also module 'glob' for expansion of *, ? and [...] in pathnames. |
| 360 | # (A function should also be defined to do full *sh-style environment |
| 361 | # variable expansion.) |
| 362 | |
| 363 | def expanduser(path): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 364 | """Expand ~ and ~user constructs. |
| 365 | |
| 366 | If user or $HOME is unknown, do nothing.""" |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 367 | if isinstance(path, bytes): |
| 368 | tilde = b'~' |
| 369 | else: |
| 370 | tilde = '~' |
| 371 | if not path.startswith(tilde): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 372 | return path |
| 373 | i, n = 1, len(path) |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 374 | while i < n and path[i] not in _get_bothseps(path): |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 375 | i += 1 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 376 | |
| 377 | if 'HOME' in os.environ: |
| 378 | userhome = os.environ['HOME'] |
| 379 | elif 'USERPROFILE' in os.environ: |
| 380 | userhome = os.environ['USERPROFILE'] |
| 381 | elif not 'HOMEPATH' in os.environ: |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 382 | return path |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 383 | else: |
| 384 | try: |
| 385 | drive = os.environ['HOMEDRIVE'] |
| 386 | except KeyError: |
| 387 | drive = '' |
| 388 | userhome = join(drive, os.environ['HOMEPATH']) |
| 389 | |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 390 | if isinstance(path, bytes): |
| 391 | userhome = userhome.encode(sys.getfilesystemencoding()) |
| 392 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 393 | if i != 1: #~user |
| 394 | userhome = join(dirname(userhome), path[1:i]) |
| 395 | |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 396 | return userhome + path[i:] |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 397 | |
| 398 | |
| 399 | # Expand paths containing shell variable substitutions. |
| 400 | # The following rules apply: |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 401 | # - no expansion within single quotes |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 402 | # - '$$' is translated into '$' |
| 403 | # - '%%' is translated into '%' if '%%' are not seen in %var1%%var2% |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 404 | # - ${varname} is accepted. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 405 | # - $varname is accepted. |
| 406 | # - %varname% is accepted. |
| 407 | # - varnames can be made out of letters, digits and the characters '_-' |
| 408 | # (though is not verifed in the ${varname} and %varname% cases) |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 409 | # XXX With COMMAND.COM you can use any characters in a variable name, |
| 410 | # XXX except '^|<>='. |
| 411 | |
Tim Peters | 2344fae | 2001-01-15 00:50:52 +0000 | [diff] [blame] | 412 | def expandvars(path): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 413 | """Expand shell variables of the forms $var, ${var} and %var%. |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 414 | |
| 415 | Unknown variables are left unchanged.""" |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 416 | if isinstance(path, bytes): |
| 417 | if ord('$') not in path and ord('%') not in path: |
| 418 | return path |
| 419 | import string |
| 420 | varchars = bytes(string.ascii_letters + string.digits + '_-', 'ascii') |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 421 | quote = b'\'' |
| 422 | percent = b'%' |
| 423 | brace = b'{' |
| 424 | dollar = b'$' |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 425 | else: |
| 426 | if '$' not in path and '%' not in path: |
| 427 | return path |
| 428 | import string |
| 429 | varchars = string.ascii_letters + string.digits + '_-' |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 430 | quote = '\'' |
| 431 | percent = '%' |
| 432 | brace = '{' |
| 433 | dollar = '$' |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 434 | res = path[:0] |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 435 | index = 0 |
| 436 | pathlen = len(path) |
| 437 | while index < pathlen: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 438 | c = path[index:index+1] |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 439 | if c == quote: # no expansion within single quotes |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 440 | path = path[index + 1:] |
| 441 | pathlen = len(path) |
| 442 | try: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 443 | index = path.index(c) |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 444 | res += c + path[:index + 1] |
Fred Drake | b4e460a | 2000-09-28 16:25:20 +0000 | [diff] [blame] | 445 | except ValueError: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 446 | res += path |
Fred Drake | b4e460a | 2000-09-28 16:25:20 +0000 | [diff] [blame] | 447 | index = pathlen - 1 |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 448 | elif c == percent: # variable or '%' |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 449 | if path[index + 1:index + 2] == percent: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 450 | res += c |
| 451 | index += 1 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 452 | else: |
| 453 | path = path[index+1:] |
| 454 | pathlen = len(path) |
| 455 | try: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 456 | index = path.index(percent) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 457 | except ValueError: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 458 | res += percent + path |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 459 | index = pathlen - 1 |
| 460 | else: |
| 461 | var = path[:index] |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 462 | if isinstance(path, bytes): |
| 463 | var = var.decode('ascii') |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 464 | if var in os.environ: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 465 | value = os.environ[var] |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 466 | else: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 467 | value = '%' + var + '%' |
| 468 | if isinstance(path, bytes): |
| 469 | value = value.encode('ascii') |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 470 | res += value |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 471 | elif c == dollar: # variable or '$$' |
| 472 | if path[index + 1:index + 2] == dollar: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 473 | res += c |
| 474 | index += 1 |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 475 | elif path[index + 1:index + 2] == brace: |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 476 | path = path[index+2:] |
| 477 | pathlen = len(path) |
| 478 | try: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 479 | if isinstance(path, bytes): |
| 480 | index = path.index(b'}') |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 481 | else: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 482 | index = path.index('}') |
| 483 | var = path[:index] |
| 484 | if isinstance(path, bytes): |
| 485 | var = var.decode('ascii') |
| 486 | if var in os.environ: |
| 487 | value = os.environ[var] |
| 488 | else: |
| 489 | value = '${' + var + '}' |
| 490 | if isinstance(path, bytes): |
| 491 | value = value.encode('ascii') |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 492 | res += value |
Fred Drake | b4e460a | 2000-09-28 16:25:20 +0000 | [diff] [blame] | 493 | except ValueError: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 494 | if isinstance(path, bytes): |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 495 | res += b'${' + path |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 496 | else: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 497 | res += '${' + path |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 498 | index = pathlen - 1 |
| 499 | else: |
| 500 | var = '' |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 501 | index += 1 |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 502 | c = path[index:index + 1] |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 503 | while c and c in varchars: |
| 504 | if isinstance(path, bytes): |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 505 | var += c.decode('ascii') |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 506 | else: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 507 | var += c |
| 508 | index += 1 |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 509 | c = path[index:index + 1] |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 510 | if var in os.environ: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 511 | value = os.environ[var] |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 512 | else: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 513 | value = '$' + var |
| 514 | if isinstance(path, bytes): |
| 515 | value = value.encode('ascii') |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 516 | res += value |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 517 | if c: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 518 | index -= 1 |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 519 | else: |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 520 | res += c |
| 521 | index += 1 |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 522 | return res |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 523 | |
| 524 | |
Tim Peters | 54a14a3 | 2001-08-30 22:05:26 +0000 | [diff] [blame] | 525 | # Normalize a path, e.g. A//B, A/./B and A/foo/../B all become A\B. |
Guido van Rossum | 3df7b5a | 1996-08-26 16:35:26 +0000 | [diff] [blame] | 526 | # Previously, this function also truncated pathnames to 8+3 format, |
| 527 | # but as this module is called "ntpath", that's obviously wrong! |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 528 | |
| 529 | def normpath(path): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 530 | """Normalize path, eliminating double slashes, etc.""" |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 531 | sep = _get_sep(path) |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 532 | dotdot = _get_dot(path) * 2 |
Georg Brandl | cfb6821 | 2010-07-31 21:40:15 +0000 | [diff] [blame] | 533 | special_prefixes = _get_special(path) |
| 534 | if path.startswith(special_prefixes): |
| 535 | # in the case of paths with these prefixes: |
| 536 | # \\.\ -> device names |
| 537 | # \\?\ -> literal paths |
| 538 | # do not do any normalization, but return the path unchanged |
| 539 | return path |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 540 | path = path.replace(_get_altsep(path), sep) |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 541 | prefix, path = splitdrive(path) |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 542 | |
| 543 | # collapse initial backslashes |
| 544 | if path.startswith(sep): |
Georg Brandl | 599b65d | 2010-07-23 08:46:35 +0000 | [diff] [blame] | 545 | prefix += sep |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 546 | path = path.lstrip(sep) |
| 547 | |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 548 | comps = path.split(sep) |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 549 | i = 0 |
| 550 | while i < len(comps): |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 551 | if not comps[i] or comps[i] == _get_dot(path): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 552 | del comps[i] |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 553 | elif comps[i] == dotdot: |
| 554 | if i > 0 and comps[i-1] != dotdot: |
Tim Peters | 54a14a3 | 2001-08-30 22:05:26 +0000 | [diff] [blame] | 555 | del comps[i-1:i+1] |
| 556 | i -= 1 |
Amaury Forgeot d'Arc | 3b44e61 | 2008-10-03 20:32:33 +0000 | [diff] [blame] | 557 | elif i == 0 and prefix.endswith(_get_sep(path)): |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 558 | del comps[i] |
| 559 | else: |
| 560 | i += 1 |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 561 | else: |
Tim Peters | 54a14a3 | 2001-08-30 22:05:26 +0000 | [diff] [blame] | 562 | i += 1 |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 563 | # If the path is now empty, substitute '.' |
| 564 | if not prefix and not comps: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 565 | comps.append(_get_dot(path)) |
| 566 | return prefix + sep.join(comps) |
Guido van Rossum | e294cf6 | 1999-01-29 18:05:18 +0000 | [diff] [blame] | 567 | |
| 568 | |
| 569 | # Return an absolute path. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 570 | try: |
| 571 | from nt import _getfullpathname |
Mark Hammond | f717f05 | 2002-01-17 00:44:26 +0000 | [diff] [blame] | 572 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 573 | except ImportError: # not running on Windows - mock up something sensible |
| 574 | def abspath(path): |
| 575 | """Return the absolute version of a path.""" |
| 576 | if not isabs(path): |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 577 | if isinstance(path, bytes): |
| 578 | cwd = os.getcwdb() |
| 579 | else: |
| 580 | cwd = os.getcwd() |
| 581 | path = join(cwd, path) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 582 | return normpath(path) |
| 583 | |
| 584 | else: # use native Windows method on Windows |
| 585 | def abspath(path): |
| 586 | """Return the absolute version of a path.""" |
| 587 | |
| 588 | if path: # Empty path must return current working directory. |
| 589 | try: |
| 590 | path = _getfullpathname(path) |
| 591 | except WindowsError: |
| 592 | pass # Bad path - return unchanged. |
Florent Xicluna | ad8c5ca | 2010-03-08 14:44:41 +0000 | [diff] [blame] | 593 | elif isinstance(path, bytes): |
| 594 | path = os.getcwdb() |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 595 | else: |
| 596 | path = os.getcwd() |
| 597 | return normpath(path) |
Guido van Rossum | 83eeef4 | 2001-09-17 15:16:09 +0000 | [diff] [blame] | 598 | |
| 599 | # realpath is a no-op on systems without islink support |
| 600 | realpath = abspath |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 601 | # Win9x family and earlier have no Unicode filename support. |
Tim Peters | 26bc25a | 2002-10-09 07:56:04 +0000 | [diff] [blame] | 602 | supports_unicode_filenames = (hasattr(sys, "getwindowsversion") and |
| 603 | sys.getwindowsversion()[3] >= 2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 604 | |
| 605 | def relpath(path, start=curdir): |
| 606 | """Return a relative version of a path""" |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 607 | sep = _get_sep(path) |
| 608 | |
| 609 | if start is curdir: |
| 610 | start = _get_dot(path) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 611 | |
| 612 | if not path: |
| 613 | raise ValueError("no path specified") |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 614 | |
| 615 | start_abs = abspath(normpath(start)) |
| 616 | path_abs = abspath(normpath(path)) |
| 617 | start_drive, start_rest = splitdrive(start_abs) |
| 618 | path_drive, path_rest = splitdrive(path_abs) |
Hirokazu Yamamoto | b08820a | 2010-10-18 12:13:18 +0000 | [diff] [blame] | 619 | if normcase(start_drive) != normcase(path_drive): |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 620 | error = "path is on mount '{0}', start on mount '{1}'".format( |
| 621 | path_drive, start_drive) |
| 622 | raise ValueError(error) |
| 623 | |
| 624 | start_list = [x for x in start_rest.split(sep) if x] |
| 625 | path_list = [x for x in path_rest.split(sep) if x] |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 626 | # Work out how much of the filepath is shared by start and path. |
Mark Hammond | 5a607a3 | 2009-05-06 08:04:54 +0000 | [diff] [blame] | 627 | i = 0 |
| 628 | for e1, e2 in zip(start_list, path_list): |
Hirokazu Yamamoto | b08820a | 2010-10-18 12:13:18 +0000 | [diff] [blame] | 629 | if normcase(e1) != normcase(e2): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 630 | break |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 631 | i += 1 |
| 632 | |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 633 | if isinstance(path, bytes): |
| 634 | pardir = b'..' |
| 635 | else: |
| 636 | pardir = '..' |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 637 | rel_list = [pardir] * (len(start_list)-i) + path_list[i:] |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 638 | if not rel_list: |
Amaury Forgeot d'Arc | c72ef8b | 2008-10-03 18:38:26 +0000 | [diff] [blame] | 639 | return _get_dot(path) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 640 | return join(*rel_list) |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 641 | |
| 642 | |
| 643 | # determine if two files are in fact the same file |
Brian Curtin | 0dac808 | 2010-09-23 20:38:14 +0000 | [diff] [blame] | 644 | try: |
Brian Curtin | e8e8042 | 2010-09-24 13:56:34 +0000 | [diff] [blame] | 645 | # GetFinalPathNameByHandle is available starting with Windows 6.0. |
| 646 | # Windows XP and non-Windows OS'es will mock _getfinalpathname. |
| 647 | if sys.getwindowsversion()[:2] >= (6, 0): |
| 648 | from nt import _getfinalpathname |
| 649 | else: |
| 650 | raise ImportError |
| 651 | except (AttributeError, ImportError): |
Brian Curtin | 0dac808 | 2010-09-23 20:38:14 +0000 | [diff] [blame] | 652 | # On Windows XP and earlier, two files are the same if their absolute |
| 653 | # pathnames are the same. |
Brian Curtin | e8e8042 | 2010-09-24 13:56:34 +0000 | [diff] [blame] | 654 | # Non-Windows operating systems fake this method with an XP |
| 655 | # approximation. |
Brian Curtin | 0dac808 | 2010-09-23 20:38:14 +0000 | [diff] [blame] | 656 | def _getfinalpathname(f): |
| 657 | return abspath(f) |
| 658 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 659 | def samefile(f1, f2): |
| 660 | "Test whether two pathnames reference the same actual file" |
Brian Curtin | 0dac808 | 2010-09-23 20:38:14 +0000 | [diff] [blame] | 661 | return _getfinalpathname(f1) == _getfinalpathname(f2) |
| 662 | |
| 663 | |
| 664 | try: |
| 665 | from nt import _getfileinformation |
| 666 | except ImportError: |
| 667 | # On other operating systems, just return the fd and see that |
| 668 | # it compares equal in sameopenfile. |
| 669 | def _getfileinformation(fd): |
| 670 | return fd |
Brian Curtin | 6285774 | 2010-09-06 17:07:27 +0000 | [diff] [blame] | 671 | |
| 672 | def sameopenfile(f1, f2): |
| 673 | """Test whether two file objects reference the same file""" |
Brian Curtin | 0dac808 | 2010-09-23 20:38:14 +0000 | [diff] [blame] | 674 | return _getfileinformation(f1) == _getfileinformation(f2) |