Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | .. _filesys: |
| 3 | |
| 4 | ************************* |
| 5 | File and Directory Access |
| 6 | ************************* |
| 7 | |
| 8 | The modules described in this chapter deal with disk files and directories. For |
| 9 | example, there are modules for reading the properties of files, manipulating |
| 10 | paths in a portable way, and creating temporary files. The full list of modules |
| 11 | in this chapter is: |
| 12 | |
| 13 | |
| 14 | .. toctree:: |
| 15 | |
| 16 | os.path.rst |
| 17 | fileinput.rst |
| 18 | stat.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 19 | filecmp.rst |
| 20 | tempfile.rst |
| 21 | glob.rst |
| 22 | fnmatch.rst |
| 23 | linecache.rst |
| 24 | shutil.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 25 | macpath.rst |
| 26 | |
| 27 | |
| 28 | .. seealso:: |
| 29 | |
| 30 | Section :ref:`bltin-file-objects` |
| 31 | A description of Python's built-in file objects. |
| 32 | |
| 33 | Module :mod:`os` |
| 34 | Operating system interfaces, including functions to work with files at a lower |
| 35 | level than the built-in file object. |
| 36 | |