Copyright © 2011 Marc Worrell
Authors: Marc Worrell (marc@worrell.nl).
filename() = string()
| is_tempfile/1 | Check if the file is a temporary filename. |
| new/0 | Return a new unique filename, start a monitoring process to clean it up after use. |
| new/1 | Return a new unique filename, start a monitoring process to clean it up after use. |
| tempfile/0 | return a unique temporary filename. |
| tempfile/1 | return a unique temporary filename with a set extension. |
| temppath/0 | Returns the path where to store temporary files. |
is_tempfile(Filename::filename()) -> boolean()
Check if the file is a temporary filename.
new() -> filename()
Return a new unique filename, start a monitoring process to clean it up after use.
new(Extension::string()) -> filename()
Return a new unique filename, start a monitoring process to clean it up after use.
tempfile() -> filename()
return a unique temporary filename.
tempfile(Extension::string()) -> filename()
return a unique temporary filename with a set extension.
temppath() -> filename()
Returns the path where to store temporary files.
Generated by EDoc