sl@0: // Copyright (c) 2006-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: // Utils.cpp sl@0: // Implementation for classes in Utils.h sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: sl@0: #include sl@0: sl@0: #include "FileUtils.h" sl@0: sl@0: sl@0: sl@0: /** sl@0: Set the given filename and path to be relative to the given drive. sl@0: sl@0: It is assumed that the input filepath is of the form: sl@0: sl@0: ?:* (? = any single character, * = any number of characters) sl@0: sl@0: The ? will be replaced by the letter corresponding to the given drive number. sl@0: sl@0: @param aFileName The input filepath. On completion this will contain the sl@0: resulting path. sl@0: @param aDrive The drive number to set to. sl@0: */ sl@0: void TEComFileUtils::SetToDrive(TDes& aFileName, TInt aDrive) sl@0: { sl@0: aFileName[0] = 'A' + static_cast(aDrive); sl@0: } sl@0: sl@0: sl@0: sl@0: