Merge pull request #13905 from perminovVS/win32-remove-dir-correct-point

FileUtilsWin32 removeDirectory correct remove file begins with point
This commit is contained in:
pandamicro 2015-09-18 18:14:20 +08:00
commit 7ac0b861c9
1 changed files with 3 additions and 2 deletions

View File

@ -592,8 +592,9 @@ bool FileUtilsWin32::removeDirectory(const std::string& dirPath)
BOOL find = true;
while (find)
{
//. ..
if (wfd.cFileName[0] != '.')
// Need check string . and .. for delete folders and files begin name.
std::wstring fileName = wfd.cFileName;
if (fileName != L"." && fileName != L"..")
{
std::wstring temp = wpath + wfd.cFileName;
if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)