Getting Gallery Images Rootpath
Article Metadata
Headers & Library
LIBRARY PlatformEnv.lib
#include <PathInfo.h>
Getting the Gallery Imagepath in Phone Memory
TBuf<256> cDrivePath;
// phone memory root
cDrivePath.Copy(PathInfo::PhoneMemoryRootPath());
// Images path on c drive
cDrivePath.Append(PathInfo::ImagesPath());
Getting the Gallery Imagepath in Memory Card
TBuf<256> eDrivePath;
/* next, the MMC gallery if one exists */
//Memory Card root
eDrivePath.Copy(PathInfo::MemoryCardRootPath());
//Images path in e drive
eDrivePath.Append(PathInfo::ImagesPath());
For more information on above topic please visit:-


30 Sep
2009
This article demonstrates on how to get root path of gallery images. It makes use of the static functions defined in PathInfo class. Using a similar approach VideosPath () and GamesPath () along with many other paths can be retrieved. This is very useful as Gallery path can differ in different editions.