sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "BAFINDF.H" sl@0: sl@0: // sl@0: // class CFindFileByType sl@0: // sl@0: sl@0: EXPORT_C CFindFileByType::CFindFileByType(RFs& aFs) sl@0: // sl@0: // Constructor sl@0: // sl@0: : iFind(aFs) sl@0: { sl@0: __DECLARE_NAME(_S("CFindFileByType")); sl@0: } sl@0: sl@0: EXPORT_C CFindFileByType::~CFindFileByType() sl@0: // sl@0: // Destructor sl@0: // sl@0: { sl@0: CloseDir(); sl@0: } sl@0: sl@0: EXPORT_C TInt CFindFileByType::FindFirst(const TDesC& aName,const TDesC& aDir,const TUidType& aType) sl@0: // sl@0: // Look for first file sl@0: // sl@0: { sl@0: iType=aType; sl@0: CloseDir(); sl@0: TInt r=iFind.FindWildByDir(aName,aDir,iDir); sl@0: if (r!=KErrNone) sl@0: return r; sl@0: iCurrentFile=-1; sl@0: return FindNext(); sl@0: } sl@0: sl@0: EXPORT_C TInt CFindFileByType::FindNext() sl@0: // sl@0: // Look for next file sl@0: // sl@0: { sl@0: TInt ii=iCurrentFile; sl@0: FOREVER sl@0: { sl@0: __ASSERT_DEBUG(iDir!=NULL,User::Invariant()); sl@0: // sl@0: TInt count=iDir->Count(); sl@0: while (++ii