/Doc/library/filesys.rst

http://unladen-swallow.googlecode.com/ · ReStructuredText · 38 lines · 27 code · 11 blank · 0 comment · 0 complexity · b2c16db6def5498d3ac92486ea659d33 MD5 · raw file

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