Product Documentation

ActivePython 2.4 Documentation

win32file.FindFilesW

list = FindFilesW(fileSpec)

Retrieves a list of matching filenames, using the Windows Unicode API. An interface to the API FindFirstFileW/FindNextFileW/Find close functions.

Parameters

fileSpec : string

A string that specifies a valid directory or path and filename, which can contain wildcard characters (* and ?).

Win32 API References

Search for FindFirstFile at msdn, google or google groups.

Search for FindNextFile at msdn, google or google groups.

Search for FindClose at msdn, google or google groups.

Return Value

The return value is a list of WIN32_FIND_DATA tuples.