First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 // class CFindFileByType
22 EXPORT_C CFindFileByType::CFindFileByType(RFs& aFs)
28 __DECLARE_NAME(_S("CFindFileByType"));
31 EXPORT_C CFindFileByType::~CFindFileByType()
39 EXPORT_C TInt CFindFileByType::FindFirst(const TDesC& aName,const TDesC& aDir,const TUidType& aType)
41 // Look for first file
46 TInt r=iFind.FindWildByDir(aName,aDir,iDir);
53 EXPORT_C TInt CFindFileByType::FindNext()
61 __ASSERT_DEBUG(iDir!=NULL,User::Invariant());
63 TInt count=iDir->Count();
66 const TEntry& entry=(*iDir)[ii];
71 if (uid!=KNullUid && uid!=entry[id])
73 if (++id==KMaxCheckedUid)
74 { // we have a matching file
76 iFile.Set(entry.iName,&iFind.File(),NULL);
82 TInt r=iFind.FindWild(iDir);
89 EXPORT_C const TEntry& CFindFileByType::Entry() const
91 return (*iDir)[iCurrentFile];
94 void CFindFileByType::CloseDir()