Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python

Idiom #139 Create temp directory

Create a new temporary folder on filesystem, for writing.

import tempfile	
td = tempfile.TemporaryDirectory()

tempfile.TemporaryDirectory() was added in Python 3.2 .
It wraps lower-level function mkdtemp() .
using System.IO;
string newDir = Path.GetTempPath() + Guid.NewGuid();
Directory.CreateDirectory(newDir);

New implementation...
< >
programming-idioms.org