Get full path of Symbian application

It's very easy for a Symbian application to learn its full path including drive letter:

// in your CAppUi class
TParse kParse;
kParse.SetNoWild(Application()->AppFullName(), NULL, NULL);

TFileName iAppPath;
iAppPath.Copy(kParse.DriveAndPath());

Valid XHTML 1.1 Valid CSS!