bool FindFile
(
CString strFilePath
)
{
// Declare variables
CFileFind fFind;
// Find file
return
fFind.
FindFile
(
strFilePath
)
;
}