Go to file
Yasuharu Yanamura 3024b2c80f docs: write README 2018-03-31 13:17:31 +09:00
Sources/Tempry feat: add dispose() 2018-03-30 17:50:58 +09:00
Tests fix: travis.yml 2018-03-30 22:59:47 +09:00
.gitignore initial commit 2018-03-30 17:50:58 +09:00
.travis.yml fix: travis.yml 2018-03-30 22:59:47 +09:00
LICENSE Initial commit 2018-03-30 17:49:06 +09:00
Package.swift initial commit 2018-03-30 17:50:58 +09:00
README.md docs: write README 2018-03-31 13:17:31 +09:00

README.md

Tempry

Build Status

Get a temporary directory path

Usage

create temporary directory and get the path

do {
  path = try Tempry.directory()
} catch _ {
}

delete temporary directory

do {
  try Tempry.dispose(path: path)
} catch _ {
}