Other languages: * Python: [tempfile](https://docs.python.org/3.8/library/tempfile.html) module with [mkstemp](https://docs.python.org/3.8/library/tempfile.html#tempfile.mkstemp), [mkdtemp](https://docs.python.org/3.8/library/tempfile.html#tempfile.mkdtemp) and [TemporaryDirectory](https://docs.python.org/3.8/library/tempfile.html#tempfile.TemporaryDirectory) * Rust: [tempfile](https://docs.rs/tempfile/3.1.0/tempfile/) package with [tempfile](https://docs.rs/tempfile/3.1.0/tempfile/fn.tempfile.html), [tempdir](https://docs.rs/tempfile/3.1.0/tempfile/fn.tempdir.html) and [TempDir](https://docs.rs/tempfile/3.1.0/tempfile/struct.TempDir.html) * Julia: [mktemp](https://docs.julialang.org/en/v1/base/file/index.html#Base.Filesystem.mktemp-Tuple{AbstractString}), [mktempdir](https://docs.julialang.org/en/v1/base/file/index.html#Base.Filesystem.mktempdir-Tuple{AbstractString})