factor/extra/io/windows/files/unique/unique.factor

11 lines
303 B
Factor
Raw Normal View History

2008-02-29 19:04:44 -05:00
USING: kernel system io.files.unique.backend
2008-03-21 13:52:47 -04:00
windows.kernel32 io.windows io.nonblocking windows ;
IN: io.windows.files.unique
2008-04-02 21:09:56 -04:00
M: windows (make-unique-file) ( path -- )
GENERIC_WRITE CREATE_NEW 0 open-file
CloseHandle win32-error=0/f ;
2008-04-02 21:09:56 -04:00
M: windows temporary-path ( -- path )
"TEMP" os-env ;