mirror of
https://github.com/euantorano/tempdir.nim
synced 2026-01-14 08:11:34 +00:00
No description
|
|
||
|---|---|---|
| .github/workflows | ||
| src | ||
| tests | ||
| .editorconfig | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| tempdir.nimble | ||
tempdir
A Nim library to create and manage temporary directories. Inspired by the Rust library of the same name.
Installation
nimble install tempdir
Or add the following to your .nimble file:
# Dependencies
requires "tempdir >= 1.0.1"
Usage
import tempdir
# Create a new temporary directory in the system's temporary directory path, with directories having the prefix `test`.
withTempDirectory(tmp, "test"):
echo "Created temporary directory with path: ", tmp
# At the end of this block, the temporary directory and all of its files will be deleted
# You can also create a temporary directory in a path of your choosing using the `createTempDirectory` procedure
let tmp2 = createTempDirectory("test", "./tmp")
echo "Created temporary directory with path: ", tmp2