diff --git a/core/io/files/files.factor b/core/io/files/files.factor index 108ace4393..7dbe8c229e 100755 --- a/core/io/files/files.factor +++ b/core/io/files/files.factor @@ -155,10 +155,10 @@ M: pathname <=> [ pathname-string ] compare ; : with-file-appender ( path quot -- ) >r r> with-stream ; inline -: temp-dir ( -- path ) +: temp-directory ( -- path ) "temp" resource-path dup exists? not [ dup make-directory ] when ; -: temp-file ( name -- path ) temp-dir swap path+ ; \ No newline at end of file +: temp-file ( name -- path ) temp-directory swap path+ ; \ No newline at end of file