0
|
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".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// f32\etshell\ts_utl.cpp
|
|
15 |
// Shell utils
|
|
16 |
//
|
|
17 |
//
|
|
18 |
|
|
19 |
#include "ts_std.h"
|
|
20 |
|
|
21 |
GLDEF_C TInt AddRelativePath(TParse& dirParse,const TDesC& aRelativePath)
|
|
22 |
//
|
|
23 |
// Add a relative path of the form "AAA\\BBB\\CCC\\" to dirParse
|
|
24 |
//
|
|
25 |
{
|
|
26 |
|
|
27 |
TPtrC path=aRelativePath;
|
|
28 |
TInt r=KErrNone;
|
|
29 |
while (path.Length())
|
|
30 |
{
|
|
31 |
TInt bsPos=path.Locate(KPathDelimiter);
|
|
32 |
__ASSERT_DEBUG(bsPos!=0 && bsPos!=KErrNotFound,Panic(EShellBadRelativePath));
|
|
33 |
r=dirParse.AddDir(path.Mid(0,bsPos));
|
|
34 |
if (r!=KErrNone)
|
|
35 |
break;
|
|
36 |
path.Set(path.Right(path.Length()-bsPos-1));
|
|
37 |
}
|
|
38 |
return r;
|
|
39 |
}
|
|
40 |
|