Globbing accuracy test fail on Windows RT fixed.
This commit is contained in:
parent
7e4c0ac4d6
commit
6d3102141c
@ -91,6 +91,7 @@ namespace
|
|||||||
if(dir->handle == INVALID_HANDLE_VALUE)
|
if(dir->handle == INVALID_HANDLE_VALUE)
|
||||||
{
|
{
|
||||||
/*closedir will do all cleanup*/
|
/*closedir will do all cleanup*/
|
||||||
|
delete dir;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return dir;
|
return dir;
|
||||||
@ -140,6 +141,7 @@ static bool isDir(const cv::String& path, DIR* dir)
|
|||||||
{
|
{
|
||||||
#if defined WIN32 || defined _WIN32 || defined WINCE
|
#if defined WIN32 || defined _WIN32 || defined WINCE
|
||||||
DWORD attributes;
|
DWORD attributes;
|
||||||
|
BOOL status = TRUE;
|
||||||
if (dir)
|
if (dir)
|
||||||
attributes = dir->data.dwFileAttributes;
|
attributes = dir->data.dwFileAttributes;
|
||||||
else
|
else
|
||||||
@ -149,14 +151,14 @@ static bool isDir(const cv::String& path, DIR* dir)
|
|||||||
wchar_t wpath[MAX_PATH];
|
wchar_t wpath[MAX_PATH];
|
||||||
size_t copied = mbstowcs(wpath, path.c_str(), MAX_PATH);
|
size_t copied = mbstowcs(wpath, path.c_str(), MAX_PATH);
|
||||||
CV_Assert((copied != MAX_PATH) && (copied != (size_t)-1));
|
CV_Assert((copied != MAX_PATH) && (copied != (size_t)-1));
|
||||||
::GetFileAttributesExW(wpath, GetFileExInfoStandard, &all_attrs);
|
status = ::GetFileAttributesExW(wpath, GetFileExInfoStandard, &all_attrs);
|
||||||
#else
|
#else
|
||||||
::GetFileAttributesExA(path.c_str(), GetFileExInfoStandard, &all_attrs);
|
status = ::GetFileAttributesExA(path.c_str(), GetFileExInfoStandard, &all_attrs);
|
||||||
#endif
|
#endif
|
||||||
attributes = all_attrs.dwFileAttributes;
|
attributes = all_attrs.dwFileAttributes;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (attributes != INVALID_FILE_ATTRIBUTES) && ((attributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
|
return status && ((attributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
|
||||||
#else
|
#else
|
||||||
(void)dir;
|
(void)dir;
|
||||||
struct stat stat_buf;
|
struct stat stat_buf;
|
||||||
|
Loading…
Reference in New Issue
Block a user