I have some troubles when I try to use Format -function. Some time ago I managed to use the function, but now in my newest project the emulator hangs allways when I try to use the format
---8<---8<---
_LIT( KFileName, "%SFileName.end" );
TFileName path;
path.Format(KFileName, AppPathL()); // This line doesn't work
---8<---8<---
If I use the following lines instead of the format function the code works.
---8<---8<---
_LIT( KFileName, "FileName.end" );
TFileName path;
path.Copy(AppPathL());
path.Append(KFileName);
---8<---8<---