Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.38 KB

File metadata and controls

43 lines (30 loc) · 1.38 KB

Table of contents


(create-temp-dir)

Function.

Creates a temp dir.

Source

(delete-tree)

Function.

Deletes a tree.

Source

(with-temp-dir)

Function.

Evaluates body with binding-name bound to the result of (create-temp-dir options), then cleans up. See create-temp-dir for valid options.

The directory will be removed with delete-tree on exit from the scope.

Source