From db7dc4e7d134b4ec534370c581e57b125fe67ac1 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sat, 7 May 2005 17:48:25 +0000 Subject: [PATCH] Add *. to dir but it does not working in ros but in windows fine some bug in ros svn path=/trunk/; revision=15085 --- reactos/subsys/system/cmd/dir.c | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/reactos/subsys/system/cmd/dir.c b/reactos/subsys/system/cmd/dir.c index 925938d7982..721729e6b73 100644 --- a/reactos/subsys/system/cmd/dir.c +++ b/reactos/subsys/system/cmd/dir.c @@ -567,14 +567,21 @@ ExtendFilespec (LPTSTR file) if (!file) return; + /* if no file spec, change to "*.*" */ if (*file == _T('\0')) - { - _tcscpy (file, _T("*.*")); + { + _tcscpy (file, _T("*.*")); return; } + // add support for *. + if ((file[0] == _T('*')) && (file[1] == _T('.') )) + { + return; + } + /* if starts with . add * in front */ if (*file == _T('.')) { @@ -585,15 +592,18 @@ ExtendFilespec (LPTSTR file) /* if no . add .* */ if (!_tcschr (file, _T('.'))) { - _tcscat (file, _T(".*")); + _tcscat (file, _T(".*")); return; } + + /* if last character is '.' add '*' */ len = _tcslen (file); if (file[len - 1] == _T('.')) { _tcscat (file, _T("*")); + ConOutPrintf(L"file3 : %s\n",file); return; } }