2008-12-14 21:03:00 -05:00
|
|
|
USING: kernel system windows.kernel32 io.backend.windows
|
|
|
|
io.files.windows io.ports windows destructors environment
|
2008-12-08 22:32:36 -05:00
|
|
|
io.files.unique ;
|
2008-12-14 21:03:00 -05:00
|
|
|
IN: io.files.unique.windows
|
2008-02-28 16:42:07 -05:00
|
|
|
|
2009-01-26 16:05:15 -05:00
|
|
|
M: windows (touch-unique-file) ( path -- )
|
2008-05-15 06:20:42 -04:00
|
|
|
GENERIC_WRITE CREATE_NEW 0 open-file dispose ;
|
2008-02-28 16:42:07 -05:00
|
|
|
|
2009-01-26 16:05:15 -05:00
|
|
|
M: windows default-temporary-directory ( -- path )
|
2008-02-28 16:42:07 -05:00
|
|
|
"TEMP" os-env ;
|