 |
CeFindAllFiles ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
This function retrieves information about all files and directories in the given directory of the Windows CE object store. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL CeFindAllFiles(
LPCWSTR szPath,
DWORD dwFlags,
LPDWORD lpdwFoundCount,
LPLPCE_FIND_DATA ppFindDataArray
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER CeFindAllFiles IN rapi;
STRING szPath,;
INTEGER dwFlags,;
INTEGER @ lpdwFoundCount,;
INTEGER @ ppFindDataArray
|
 |
 |
 |
| Parameters: |
 |
szPath
[in] Null-terminated string contains the name of the path in which to search for files.
dwFlags
[in] Combination of filter and retrieval flags. The filter flags specify what kinds of files to document, and the retrieval flags specify which members of the CE_FIND_DATA structure to retrieve.
lpdwFoundCount
[out] Long pointer to a variable that receives a count of the items found.
ppFindDataArray
[out] Pointer to the pointer to an array of CE_FIND_DATA structures that receive information about the found items. |
 |
 |
| Return value: |
 |
| TRUE indicates success. FALSE indicates failure. |
 |
 |
| My comment: |
 |
The function copies information to an array of CE_FIND_DATA structures.
It is the application"s responsibility to free the memory used by the ppFindDataArray array. To free the memory you must call CeRapiFreeBuffer.
|
 |
 |
| Word Index links for the CeFindAllFiles : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2004-07-04 10:17:47 | | Modified: | 2004-07-04 10:20:24 | Visited in last 7 days: 23 |