From b3f0ff51aa5acd1b33eeba83da55f8988f760a5a Mon Sep 17 00:00:00 2001 From: 8byte-jose <8byte.jose@gmail.com> Date: Tue, 25 Jan 2011 13:32:21 +0100 Subject: [PATCH] fixed handling of UNC paths under windows --- basis/io/files/windows/windows.factor | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/basis/io/files/windows/windows.factor b/basis/io/files/windows/windows.factor index 6a83fcec27..4b0c8cb130 100755 --- a/basis/io/files/windows/windows.factor +++ b/basis/io/files/windows/windows.factor @@ -325,9 +325,14 @@ M: winnt root-directory? ( path -- ? ) TR: normalize-separators "/" "\\" ; M: winnt normalize-path ( string -- string' ) - absolute-path - normalize-separators - prepend-prefix ; + dup [ "//" head? ] [ "\\\\" head? ] bi + or [ + normalize-separators + ] [ + absolute-path + normalize-separators + prepend-prefix + ] if ; M: winnt CreateFile-flags ( DWORD -- DWORD ) FILE_FLAG_OVERLAPPED bitor ;