tags:

views:

150

answers:

1

Is there a Common Lisp function or typical way for creating a temporary file name or file?

+3  A: 

There is no function for that in common lisp. Allegro has make-temp-file-name, Emacs has make-temp-file, clisp has mkstemp.

Martin v. Löwis