Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
Georg Brandl | c575c90 | 2008-09-13 17:46:05 +0000 | [diff] [blame] | 2 | :mod:`macpath` --- Mac OS 9 path manipulation functions |
| 3 | ======================================================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 4 | |
| 5 | .. module:: macpath |
Georg Brandl | c575c90 | 2008-09-13 17:46:05 +0000 | [diff] [blame] | 6 | :synopsis: Mac OS 9 path manipulation functions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | |
| 8 | |
| 9 | This module is the Mac OS 9 (and earlier) implementation of the :mod:`os.path` |
| 10 | module. It can be used to manipulate old-style Macintosh pathnames on Mac OS X |
| 11 | (or any other platform). |
| 12 | |
| 13 | The following functions are available in this module: :func:`normcase`, |
| 14 | :func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`, |
| 15 | :func:`isfile`, :func:`walk`, :func:`exists`. For other functions available in |
| 16 | :mod:`os.path` dummy counterparts are available. |
| 17 | |