[CMD] "del /s directory" command doesn't show the directories or files names in the confirmation message (#680)

CORE-14059
This commit is contained in:
Katayama Hirofumi MZ 2018-07-13 08:47:45 +09:00 committed by Hermès BÉLUSCA - MAÏTO
parent 80bac79070
commit 706a1c5132

View file

@ -180,6 +180,7 @@ DeleteFiles(LPTSTR FileName, DWORD* dwFlags, DWORD dwAttrFlags)
if (!((*dwFlags & DEL_YES) || (*dwFlags & DEL_QUIET) || (*dwFlags & DEL_PROMPT)))
{
ConOutPrintf (_T("Delete %s, "),szFileName);
res = FilePromptYNA (STRING_DEL_HELP2);
if ((res == PROMPT_NO) || (res == PROMPT_BREAK))
return 0x80000000;