11 lines
328 B
Factor
11 lines
328 B
Factor
USING: kernel system windows.kernel32 io.backend.windows
|
|
io.files.windows io.ports windows destructors environment
|
|
io.files.unique ;
|
|
IN: io.files.unique.windows
|
|
|
|
M: windows (touch-unique-file) ( path -- )
|
|
GENERIC_WRITE CREATE_NEW 0 open-file dispose ;
|
|
|
|
M: windows default-temporary-directory ( -- path )
|
|
"TEMP" os-env ;
|