diff -r ebc84c812384 -r 46218c8b8afa Symbian3/PDK/Source/GUID-EC567597-093B-50C8-90FF-300A439A99A5.dita --- a/Symbian3/PDK/Source/GUID-EC567597-093B-50C8-90FF-300A439A99A5.dita Thu Mar 11 15:24:26 2010 +0000 +++ b/Symbian3/PDK/Source/GUID-EC567597-093B-50C8-90FF-300A439A99A5.dita Thu Mar 11 18:02:22 2010 +0000 @@ -1,20 +1,20 @@ - - - - - -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); + + + + + +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