blob: b341f5fd8eb54131c7ddfa39dbe922659354ac44 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _filesys:
2
3*************************
4File and Directory Access
5*************************
6
7The modules described in this chapter deal with disk files and directories. For
8example, there are modules for reading the properties of files, manipulating
9paths in a portable way, and creating temporary files. The full list of modules
10in this chapter is:
11
12
13.. toctree::
14
15 os.path.rst
16 fileinput.rst
17 stat.rst
Georg Brandl116aa622007-08-15 14:28:22 +000018 filecmp.rst
19 tempfile.rst
20 glob.rst
21 fnmatch.rst
22 linecache.rst
23 shutil.rst
Georg Brandl116aa622007-08-15 14:28:22 +000024 macpath.rst
25
26
27.. seealso::
28
29 Section :ref:`bltin-file-objects`
30 A description of Python's built-in file objects.
31
32 Module :mod:`os`
33 Operating system interfaces, including functions to work with files at a lower
34 level than the built-in file object.
35
Benjamin Peterson50a14692009-04-15 20:34:30 +000036 Module :mod:`io`
37 Python's framework for dealing with I/O including reading and writing
38 files.
39