Staging
v0.8.1
Revision c74ca5396aa7740d4fc90617e6b2315e849fa71f authored by Miss Islington (bot) on 02 May 2018, 02:51:31 UTC, committed by Ned Deily on 02 May 2018, 02:51:31 UTC
(cherry picked from commit d06d345f04b3f7e5b318df69b1d179328a64ca9c)

Co-authored-by: Ray Donnelly <mingw.android@gmail.com>
1 parent 0596f31
Raw File
filesys.rst
.. _filesys:

*************************
File and Directory Access
*************************

The modules described in this chapter deal with disk files and directories.  For
example, there are modules for reading the properties of files, manipulating
paths in a portable way, and creating temporary files.  The full list of modules
in this chapter is:


.. toctree::

   pathlib.rst
   os.path.rst
   fileinput.rst
   stat.rst
   filecmp.rst
   tempfile.rst
   glob.rst
   fnmatch.rst
   linecache.rst
   shutil.rst
   macpath.rst


.. seealso::

   Module :mod:`os`
      Operating system interfaces, including functions to work with files at a
      lower level than Python :term:`file objects <file object>`.

   Module :mod:`io`
      Python's built-in I/O library, including both abstract classes and
      some concrete classes such as file I/O.

   Built-in function :func:`open`
      The standard way to open files for reading and writing with Python.
back to top