Update contrib.
1 // Copyright (c) 1996-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 the License "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.
14 // f32\etshell\ts_utl.cpp
21 GLDEF_C TInt AddRelativePath(TParse& dirParse,const TDesC& aRelativePath)
23 // Add a relative path of the form "AAA\\BBB\\CCC\\" to dirParse
27 TPtrC path=aRelativePath;
31 TInt bsPos=path.Locate(KPathDelimiter);
32 __ASSERT_DEBUG(bsPos!=0 && bsPos!=KErrNotFound,Panic(EShellBadRelativePath));
33 r=dirParse.AddDir(path.Mid(0,bsPos));
36 path.Set(path.Right(path.Length()-bsPos-1));