FileUtilsWin32 removeDirectory correct remove file begins with point

Need check fileName . and .. for delete folders and files begin name.
This commit is contained in:
Vladimir Perminov 2015-09-17 22:36:43 +03:00
parent 731373b93d
commit fdacdcae07
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; BOOL find = true;
while (find) while (find)
{ {
//. .. // Need check string . and .. for delete folders and files begin name.
if (wfd.cFileName[0] != '.') std::wstring fileName = wfd.cFileName;
if (fileName != L"." && fileName != L"..")
{ {
std::wstring temp = wpath + wfd.cFileName; std::wstring temp = wpath + wfd.cFileName;
if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)