Symbian3/SDK/Source/GUID-D5B8DC2A-E2BA-54FE-A359-1496356AF93F.dita
author Dominic Pinkman <Dominic.Pinkman@Nokia.com>
Thu, 21 Jan 2010 18:18:20 +0000
changeset 0 89d6a7a84779
permissions -rw-r--r--
Initial contribution of Documentation_content according to Feature bug 1266 bug 1268 bug 1269 bug 1270 bug 1372 bug 1374 bug 1375 bug 1379 bug 1380 bug 1381 bug 1382 bug 1383 bug 1385

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies) All rights reserved. -->
<!-- This component and the accompanying materials are made available under the terms of the License 
"Eclipse Public License v1.0" which accompanies this distribution, 
and is available at the URL "http://www.eclipse.org/legal/epl-v10.html". -->
<!-- Initial Contributors:
    Nokia Corporation - initial contribution.
Contributors: 
-->
<!DOCTYPE concept
  PUBLIC "-//OASIS//DTD DITA Concept//EN" "concept.dtd">
<concept xml:lang="en" id="GUID-D5B8DC2A-E2BA-54FE-A359-1496356AF93F"><title>How to delete files and directories</title><prolog><metadata><keywords/></metadata></prolog><conbody><p>Use <codeph>RmDir()</codeph> to delete an empty directory. Use <codeph>Delete()</codeph> to delete a file. </p> <codeblock id="GUID-9673872B-2952-5076-AA8D-F8E2B3E5AFA6" xml:space="preserve">
// Deletes KTopDir, deleting all files and sub-directories first
User::LeaveIfError(fsSession.Delete(KFile2));
User::LeaveIfError(fsSession.RmDir(KDir1));
User::LeaveIfError(fsSession.RmDir(KDir2));
User::LeaveIfError(fsSession.Delete(KFile1));
User::LeaveIfError(fsSession.RmDir(KTopDir)); ... </codeblock> <section><title>Notes</title> <ul><li id="GUID-DC2A9104-5B7E-5481-8368-461DFC8B230F"><p>Files must be closed and must not be read-only in order to be deleted. </p> </li> <li id="GUID-DF4CF5BA-BC2E-51DB-8264-0FF0538ADD74"><p> <xref href="GUID-E263C747-946F-35AA-9F1D-41833BD350FC.dita#GUID-E263C747-946F-35AA-9F1D-41833BD350FC/GUID-C28319AD-2CC7-3009-9707-51C9EF02C51B"><apiname>RFs::Delete()</apiname></xref> does not accept the use of <keyword>wildcards</keyword>. To delete multiple files, use <xref href="GUID-82CEC14F-1479-3922-846A-9FCDB6465EF7.dita#GUID-82CEC14F-1479-3922-846A-9FCDB6465EF7/GUID-71056B22-AC2A-3E91-8896-8A6F2FB9B619"><apiname>CFileMan::Delete()</apiname></xref> instead. </p> </li> </ul> </section> </conbody></concept>