diff -r 43e37759235e -r 51a74ef9ed63 Symbian3/SDK/Source/GUID-EC567597-093B-50C8-90FF-300A439A99A5.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-EC567597-093B-50C8-90FF-300A439A99A5.dita Wed Mar 31 11:11:55 2010 +0100 @@ -0,0 +1,29 @@ + + + + + +How +to rename filesThis topic describes how to rename files. +
Using Rename()

The +following code fragment does not rename the directory bottomdir, +but moves it from directory middledir to topdir:

RFs fs; +... +_LIT(KOldDir,"\\topdir\\middledir\\bottomdir\\"); +_LIT(KNewDir,"\\topdir\\bottomdir\\"); +... +fs.Rename(KOldDir,KNewDir);
+
Using IsValidName()

When +specifying a name, any spaces between the drive, if specified, and the first +directory in the path are illegal.

The following code fragment returns +false:

... +_LIT(KDirName,"C: \\DIR\\"); +TBool bool=fs.IsValidName(KDirName); +...
+
\ No newline at end of file