diff --git a/reactos/base/shell/cmd/copy.c b/reactos/base/shell/cmd/copy.c index 1239ed4f433..94208d99d23 100644 --- a/reactos/base/shell/cmd/copy.c +++ b/reactos/base/shell/cmd/copy.c @@ -743,7 +743,7 @@ INT cmd_copy (LPTSTR cmd, LPTSTR param) _tcscpy(tmpDestPath,szDestPath); /* Can't put a file into a folder that isnt there */ - if(!IsExistingDirectory(szDestPath)) + if(_tcscmp (szDestPath, _T("\\\\.\\")) && !IsExistingDirectory(szDestPath)) { ConOutFormatMessage (GetLastError (), szSrcPath); freep (arg);