Wednesday, November 12, 2014

Python Module: tempfile

A python built-in module, which generates temporary files and directories. It works on all supported platforms.

Example:
import tempfile
# to get temporary folder directory in current operation system
tempfile.gettempdir()

No comments:

Post a Comment