mkdtemp¶
- class data_base.utils.mkdtemp¶
- Context manager for creating temporary directories - Example - >>> with mkdtemp() as tempdir: ... print(tempdir) ... print(os.path.exists(tempdir)) /pat/to/tmpdir True >>> os.path.exists(tempdir) False
Documentation unclear, incomplete, broken or wrong? Let us know