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