Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 1 | # Module 'ntpath' -- common operations on WinNT/Win95 pathnames |
| 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 |
| 9 | import stat |
| 10 | import string |
| 11 | |
| 12 | |
Guido van Rossum | e2ad88c | 1997-08-12 14:46:58 +0000 | [diff] [blame] | 13 | # Normalize the case of a pathname and map slashes to backslashes. |
| 14 | # Other normalizations (such as optimizing '../' away) are not done |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 15 | # (this is done by normpath). |
Guido van Rossum | e2ad88c | 1997-08-12 14:46:58 +0000 | [diff] [blame] | 16 | |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 17 | def normcase(s): |
Guido van Rossum | 16a0bc2 | 1998-02-18 13:48:31 +0000 | [diff] [blame] | 18 | """Normalize case of pathname. |
| 19 | |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 20 | Makes all characters lowercase and all slashes into backslashes.""" |
Guido van Rossum | 16a0bc2 | 1998-02-18 13:48:31 +0000 | [diff] [blame] | 21 | return string.lower(string.replace(s, "/", "\\")) |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 22 | |
Guido van Rossum | 77e1db3 | 1997-06-02 23:11:57 +0000 | [diff] [blame] | 23 | |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 24 | # Return wheter a path is absolute. |
| 25 | # Trivial in Posix, harder on the Mac or MS-DOS. |
| 26 | # For DOS it is absolute if it starts with a slash or backslash (current |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 27 | # volume), or if a pathname after the volume letter and colon / UNC resource |
| 28 | # starts with a slash or backslash. |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 29 | |
| 30 | def isabs(s): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 31 | """Test whether a path is absolute""" |
| 32 | s = splitdrive(s)[1] |
| 33 | return s != '' and s[:1] in '/\\' |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 34 | |
| 35 | |
Guido van Rossum | 77e1db3 | 1997-06-02 23:11:57 +0000 | [diff] [blame] | 36 | # Join two (or more) paths. |
| 37 | |
Barry Warsaw | 384d249 | 1997-02-18 21:53:25 +0000 | [diff] [blame] | 38 | def join(a, *p): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 39 | """Join two or more pathname components, inserting "\\" as needed""" |
| 40 | path = a |
| 41 | for b in p: |
| 42 | if isabs(b): |
| 43 | path = b |
| 44 | elif path == '' or path[-1:] in '/\\': |
| 45 | path = path + b |
| 46 | else: |
| 47 | path = path + os.sep + b |
| 48 | return path |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 49 | |
| 50 | |
| 51 | # Split a path in a drive specification (a drive letter followed by a |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 52 | # colon, or a UNC resource) and the path specification. |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 53 | # It is always true that drivespec + pathspec == p |
| 54 | def splitdrive(p): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 55 | """Split a pathname into drive and path specifiers. |
| 56 | |
| 57 | Return a 2-tuple (drive, path); either part may be empty. |
| 58 | This recognizes UNC paths (e.g. '\\\\host\\mountpoint\\dir\\file')""" |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 59 | if p[1:2] == ':': |
| 60 | return p[0:2], p[2:] |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 61 | firstTwo = p[0:2] |
| 62 | if firstTwo == '//' or firstTwo == '\\\\': |
| 63 | # is a UNC path: |
| 64 | # vvvvvvvvvvvvvvvvvvvv equivalent to drive letter |
| 65 | # \\machine\mountpoint\directories... |
| 66 | # directory ^^^^^^^^^^^^^^^ |
| 67 | normp = normcase(p) |
| 68 | index = string.find(normp, '\\', 2) |
| 69 | if index == -1: |
| 70 | ##raise RuntimeError, 'illegal UNC path: "' + p + '"' |
| 71 | return ("", p) |
| 72 | index = string.find(normp, '\\', index + 1) |
| 73 | if index == -1: |
| 74 | index = len(p) |
| 75 | return p[:index], p[index:] |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 76 | return '', p |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 77 | |
| 78 | |
| 79 | # 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] | 80 | # rest). After the trailing '/' is stripped, the invariant |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 81 | # join(head, tail) == p holds. |
| 82 | # The resulting head won't end in '/' unless it is the root. |
| 83 | |
| 84 | def split(p): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 85 | """Split a pathname. |
| 86 | |
| 87 | Return tuple (head, tail) where tail is everything after the final slash. |
| 88 | Either part may be empty.""" |
Guido van Rossum | 8f0fa9e | 1999-03-19 21:05:12 +0000 | [diff] [blame] | 89 | |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 90 | d, p = splitdrive(p) |
Guido van Rossum | 8f0fa9e | 1999-03-19 21:05:12 +0000 | [diff] [blame] | 91 | # set i to index beyond p's last slash |
| 92 | i = len(p) |
| 93 | while i and p[i-1] not in '/\\': |
| 94 | i = i - 1 |
| 95 | head, tail = p[:i], p[i:] # now tail has no slashes |
| 96 | # remove trailing slashes from head, unless it's all slashes |
| 97 | head2 = head |
| 98 | while head2 and head2[-1] in '/\\': |
| 99 | head2 = head2[:-1] |
| 100 | head = head2 or head |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 101 | return d + head, tail |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 102 | |
| 103 | |
| 104 | # Split a path in root and extension. |
Guido van Rossum | 73e122f | 1997-01-22 00:17:26 +0000 | [diff] [blame] | 105 | # 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] | 106 | # pathname component; the root is everything before that. |
| 107 | # It is always true that root + ext == p. |
| 108 | |
| 109 | def splitext(p): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 110 | """Split the extension from a pathname. |
| 111 | |
| 112 | Extension is everything from the last dot to the end. |
| 113 | Return (root, ext), either part may be empty.""" |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 114 | root, ext = '', '' |
| 115 | for c in p: |
| 116 | if c in ['/','\\']: |
| 117 | root, ext = root + ext + c, '' |
| 118 | elif c == '.': |
| 119 | if ext: |
| 120 | root, ext = root + ext, c |
| 121 | else: |
| 122 | ext = c |
| 123 | elif ext: |
| 124 | ext = ext + c |
| 125 | else: |
| 126 | root = root + c |
| 127 | return root, ext |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 128 | |
| 129 | |
| 130 | # Return the tail (basename) part of a path. |
| 131 | |
| 132 | def basename(p): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 133 | """Returns the final component of a pathname""" |
| 134 | return split(p)[1] |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 135 | |
| 136 | |
| 137 | # Return the head (dirname) part of a path. |
| 138 | |
| 139 | def dirname(p): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 140 | """Returns the directory component of a pathname""" |
| 141 | return split(p)[0] |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 142 | |
| 143 | |
| 144 | # Return the longest prefix of all list elements. |
| 145 | |
| 146 | def commonprefix(m): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 147 | "Given a list of pathnames, returns the longest common leading component" |
| 148 | if not m: return '' |
| 149 | prefix = m[0] |
| 150 | for item in m: |
| 151 | for i in range(len(prefix)): |
| 152 | if prefix[:i+1] <> item[:i+1]: |
| 153 | prefix = prefix[:i] |
| 154 | if i == 0: return '' |
| 155 | break |
| 156 | return prefix |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 157 | |
| 158 | |
Guido van Rossum | 2bc1f8f | 1998-07-24 20:49:26 +0000 | [diff] [blame] | 159 | # Get size, mtime, atime of files. |
| 160 | |
| 161 | def getsize(filename): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 162 | """Return the size of a file, reported by os.stat()""" |
Guido van Rossum | 2bc1f8f | 1998-07-24 20:49:26 +0000 | [diff] [blame] | 163 | st = os.stat(filename) |
| 164 | return st[stat.ST_SIZE] |
| 165 | |
| 166 | def getmtime(filename): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 167 | """Return the last modification time of a file, reported by os.stat()""" |
Guido van Rossum | 2bc1f8f | 1998-07-24 20:49:26 +0000 | [diff] [blame] | 168 | st = os.stat(filename) |
| 169 | return st[stat.ST_MTIME] |
| 170 | |
| 171 | def getatime(filename): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 172 | """Return the last access time of a file, reported by os.stat()""" |
Guido van Rossum | 2bc1f8f | 1998-07-24 20:49:26 +0000 | [diff] [blame] | 173 | st = os.stat(filename) |
| 174 | return st[stat.ST_MTIME] |
| 175 | |
| 176 | |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 177 | # Is a path a symbolic link? |
| 178 | # This will always return false on systems where posix.lstat doesn't exist. |
| 179 | |
| 180 | def islink(path): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 181 | """Test for symbolic link. On WindowsNT/95 always returns false""" |
| 182 | return 0 |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 183 | |
| 184 | |
| 185 | # Does a path exist? |
| 186 | # This is false for dangling symbolic links. |
| 187 | |
| 188 | def exists(path): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 189 | """Test whether a path exists""" |
| 190 | try: |
| 191 | st = os.stat(path) |
| 192 | except os.error: |
| 193 | return 0 |
| 194 | return 1 |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 195 | |
| 196 | |
| 197 | # Is a path a dos directory? |
| 198 | # This follows symbolic links, so both islink() and isdir() can be true |
| 199 | # for the same path. |
| 200 | |
| 201 | def isdir(path): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 202 | """Test whether a path is a directory""" |
| 203 | try: |
| 204 | st = os.stat(path) |
| 205 | except os.error: |
| 206 | return 0 |
| 207 | return stat.S_ISDIR(st[stat.ST_MODE]) |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 208 | |
| 209 | |
| 210 | # Is a path a regular file? |
| 211 | # This follows symbolic links, so both islink() and isdir() can be true |
| 212 | # for the same path. |
| 213 | |
| 214 | def isfile(path): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 215 | """Test whether a path is a regular file""" |
| 216 | try: |
| 217 | st = os.stat(path) |
| 218 | except os.error: |
| 219 | return 0 |
| 220 | return stat.S_ISREG(st[stat.ST_MODE]) |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 221 | |
| 222 | |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 223 | # Is a path a mount point? |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 224 | # XXX This degenerates in: 'is this the root?' on DOS/Windows |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 225 | |
| 226 | def ismount(path): |
Guido van Rossum | ca99c2c | 1998-01-19 22:25:59 +0000 | [diff] [blame] | 227 | """Test whether a path is a mount point (defined as root of drive)""" |
| 228 | p = splitdrive(path)[1] |
| 229 | return len(p)==1 and p[0] in '/\\' |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 230 | |
| 231 | |
| 232 | # Directory tree walk. |
| 233 | # For each directory under top (including top itself, but excluding |
| 234 | # '.' and '..'), func(arg, dirname, filenames) is called, where |
| 235 | # dirname is the name of the directory and filenames is the list |
| 236 | # files files (and subdirectories etc.) in the directory. |
| 237 | # The func may modify the filenames list, to implement a filter, |
| 238 | # or to impose a different order of visiting. |
| 239 | |
| 240 | def walk(top, func, arg): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 241 | """Directory tree walk whth callback function. |
| 242 | |
| 243 | walk(top, func, args) calls func(arg, d, files) for each directory d |
| 244 | in the tree rooted at top (including top itself); files is a list |
| 245 | of all the files and subdirs in directory d.""" |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 246 | try: |
| 247 | names = os.listdir(top) |
| 248 | except os.error: |
| 249 | return |
| 250 | func(arg, top, names) |
| 251 | exceptions = ('.', '..') |
| 252 | for name in names: |
| 253 | if name not in exceptions: |
| 254 | name = join(top, name) |
| 255 | if isdir(name): |
| 256 | walk(name, func, arg) |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 257 | |
| 258 | |
| 259 | # Expand paths beginning with '~' or '~user'. |
| 260 | # '~' means $HOME; '~user' means that user's home directory. |
| 261 | # If the path doesn't begin with '~', or if the user or $HOME is unknown, |
| 262 | # the path is returned unchanged (leaving error reporting to whatever |
| 263 | # function is called with the expanded path as argument). |
| 264 | # See also module 'glob' for expansion of *, ? and [...] in pathnames. |
| 265 | # (A function should also be defined to do full *sh-style environment |
| 266 | # variable expansion.) |
| 267 | |
| 268 | def expanduser(path): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 269 | """Expand ~ and ~user constructs. |
| 270 | |
| 271 | If user or $HOME is unknown, do nothing.""" |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 272 | if path[:1] <> '~': |
| 273 | return path |
| 274 | i, n = 1, len(path) |
| 275 | while i < n and path[i] not in '/\\': |
| 276 | i = i+1 |
| 277 | if i == 1: |
| 278 | if os.environ.has_key('HOME'): |
| 279 | userhome = os.environ['HOME'] |
| 280 | elif not os.environ.has_key('HOMEPATH'): |
| 281 | return path |
| 282 | else: |
| 283 | try: |
| 284 | drive=os.environ['HOMEDRIVE'] |
| 285 | except KeyError: |
| 286 | drive = '' |
| 287 | userhome = join(drive, os.environ['HOMEPATH']) |
| 288 | else: |
| 289 | return path |
| 290 | return userhome + path[i:] |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 291 | |
| 292 | |
| 293 | # Expand paths containing shell variable substitutions. |
| 294 | # The following rules apply: |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 295 | # - no expansion within single quotes |
| 296 | # - no escape character, except for '$$' which is translated into '$' |
| 297 | # - ${varname} is accepted. |
| 298 | # - varnames can be made out of letters, digits and the character '_' |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 299 | # XXX With COMMAND.COM you can use any characters in a variable name, |
| 300 | # XXX except '^|<>='. |
| 301 | |
| 302 | varchars = string.letters + string.digits + '_-' |
| 303 | |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 304 | def expandvars(path): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 305 | """Expand shell variables of form $var and ${var}. |
| 306 | |
| 307 | Unknown variables are left unchanged.""" |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 308 | if '$' not in path: |
| 309 | return path |
| 310 | res = '' |
| 311 | index = 0 |
| 312 | pathlen = len(path) |
| 313 | while index < pathlen: |
| 314 | c = path[index] |
| 315 | if c == '\'': # no expansion within single quotes |
| 316 | path = path[index + 1:] |
| 317 | pathlen = len(path) |
| 318 | try: |
| 319 | index = string.index(path, '\'') |
| 320 | res = res + '\'' + path[:index + 1] |
| 321 | except string.index_error: |
| 322 | res = res + path |
| 323 | index = pathlen -1 |
| 324 | elif c == '$': # variable or '$$' |
| 325 | if path[index + 1:index + 2] == '$': |
| 326 | res = res + c |
| 327 | index = index + 1 |
| 328 | elif path[index + 1:index + 2] == '{': |
| 329 | path = path[index+2:] |
| 330 | pathlen = len(path) |
| 331 | try: |
| 332 | index = string.index(path, '}') |
| 333 | var = path[:index] |
| 334 | if os.environ.has_key(var): |
| 335 | res = res + os.environ[var] |
| 336 | except string.index_error: |
| 337 | res = res + path |
| 338 | index = pathlen - 1 |
| 339 | else: |
| 340 | var = '' |
| 341 | index = index + 1 |
| 342 | c = path[index:index + 1] |
| 343 | while c != '' and c in varchars: |
| 344 | var = var + c |
| 345 | index = index + 1 |
| 346 | c = path[index:index + 1] |
| 347 | if os.environ.has_key(var): |
| 348 | res = res + os.environ[var] |
| 349 | if c != '': |
| 350 | res = res + c |
| 351 | else: |
| 352 | res = res + c |
| 353 | index = index + 1 |
| 354 | return res |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 355 | |
| 356 | |
| 357 | # 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] | 358 | # Previously, this function also truncated pathnames to 8+3 format, |
| 359 | # but as this module is called "ntpath", that's obviously wrong! |
Guido van Rossum | 555915a | 1994-02-24 11:32:59 +0000 | [diff] [blame] | 360 | |
| 361 | def normpath(path): |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 362 | """Normalize path, eliminating double slashes, etc.""" |
Guido van Rossum | 16a0bc2 | 1998-02-18 13:48:31 +0000 | [diff] [blame] | 363 | path = string.replace(path, "/", "\\") |
Guido van Rossum | 15e22e1 | 1997-12-05 19:03:01 +0000 | [diff] [blame] | 364 | prefix, path = splitdrive(path) |
| 365 | while path[:1] == os.sep: |
| 366 | prefix = prefix + os.sep |
| 367 | path = path[1:] |
| 368 | comps = string.splitfields(path, os.sep) |
| 369 | i = 0 |
| 370 | while i < len(comps): |
| 371 | if comps[i] == '.': |
| 372 | del comps[i] |
| 373 | elif comps[i] == '..' and i > 0 and comps[i-1] not in ('', '..'): |
| 374 | del comps[i-1:i+1] |
| 375 | i = i-1 |
| 376 | elif comps[i] == '' and i > 0 and comps[i-1] <> '': |
| 377 | del comps[i] |
| 378 | else: |
| 379 | i = i+1 |
| 380 | # If the path is now empty, substitute '.' |
| 381 | if not prefix and not comps: |
| 382 | comps.append('.') |
| 383 | return prefix + string.joinfields(comps, os.sep) |
Guido van Rossum | e294cf6 | 1999-01-29 18:05:18 +0000 | [diff] [blame] | 384 | |
| 385 | |
| 386 | # Return an absolute path. |
| 387 | def abspath(path): |
Guido van Rossum | 534972b | 1999-02-03 17:20:50 +0000 | [diff] [blame] | 388 | """Return the absolute version of a path""" |
Guido van Rossum | 9787bea | 1999-01-29 22:30:41 +0000 | [diff] [blame] | 389 | try: |
| 390 | import win32api |
| 391 | return win32api.GetFullPathName(path) |
| 392 | except ImportError: |
| 393 | if not isabs(path): |
| 394 | path = join(os.getcwd(), path) |
| 395 | return normpath(path) |