Commit 617bc19e authored by Guido van Rossum's avatar Guido van Rossum

In Win32 version of listdir(), when FindFirstFile() returns

ERROR_FILE_NOT_FOUND, return an empty list instead of raising an
exception.
parent 954e3cab
......@@ -644,6 +644,8 @@ posix_listdir(self, args)
hFindFile = FindFirstFile(namebuf, &FileData);
if (hFindFile == INVALID_HANDLE_VALUE) {
errno = GetLastError();
if (errno == ERROR_FILE_NOT_FOUND)
return PyList_New(0);
return posix_error();
}
do {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment