Get private path in Qt
hamishwillee
(Talk | contribs) m (Add reviewer approved with timestamp to this page) |
hamishwillee
(Talk | contribs) m (Text replace - "<code cpp>" to "<code cpp-qt>") |
||
| (4 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| + | {{ArticleMetaData <!-- v1.2 --> | ||
| + | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> | ||
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Qt SDK 1.1.4]) --> | ||
| + | |platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | ||
| + | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= <!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20090620 | ||
| + | |author= [[User:Savaj]] | ||
| + | }} | ||
[[Category:Qt]] | [[Category:Qt]] | ||
| − | + | ||
{{Abstract|visible=true|This article explains how to get the Symbian application private path where you can safely store application data.}} | {{Abstract|visible=true|This article explains how to get the Symbian application private path where you can safely store application data.}} | ||
| Line 11: | Line 33: | ||
'''Source code''' | '''Source code''' | ||
| − | <code cpp> | + | <code cpp-qt> |
/* This method will return private path as C:/Private/ed8788dc | /* This method will return private path as C:/Private/ed8788dc | ||
assuming application installed on c drive and has UID ed8788dc */ | assuming application installed on c drive and has UID ed8788dc */ | ||
| Line 17: | Line 39: | ||
</code> | </code> | ||
or | or | ||
| − | <code cpp> | + | <code cpp-qt> |
/* This method will return private path as C:/Private/ed8788dc | /* This method will return private path as C:/Private/ed8788dc | ||
assuming application installed on c drive and has UID ed8788dc */ | assuming application installed on c drive and has UID ed8788dc */ | ||
| Line 28: | Line 50: | ||
== References == | == References == | ||
| − | * [http://doc.qt.nokia.com/latest/qdesktopservices.html#StandardLocation-enum QDesktopServices::DataLocation] | + | * [http://doc.qt.nokia.com/latest/qdesktopservices.html#StandardLocation-enum QDesktopServices::DataLocation][[Category:MeeGo Harmattan]] [[Category:Symbian]] |
Latest revision as of 04:16, 11 October 2012
Article Metadata
This article explains how to get the Symbian application private path where you can safely store application data.
Description
Symbian applications store their data in a secure area, known as a "private directory", or data cage. Other applications cannot read/write this folder unless they have the manufacturer capability AllFiles - this is hard to obtain.
The private directory is located at \private\<sid>, where the SID is a special identifier that is unique to the application (usually the same value as the application UID). In Qt you will get full path of private folder using QDir::currentPath() method or QDesktopServices::storageLocation (QDesktopServices::DataLocation). Either method returns the absolute path of the application's current directory.
Source code
/* This method will return private path as C:/Private/ed8788dc
assuming application installed on c drive and has UID ed8788dc */
QString myPrivateDirectory (QDesktopServices::storageLocation (QDesktopServices::DataLocation));
or
/* This method will return private path as C:/Private/ed8788dc
assuming application installed on c drive and has UID ed8788dc */
QString privatePathQt(QApplication::applicationDirPath());
Converting path from Qt format to Symbian format
In pure Qt applications you can use the returned path directly. If you need to interact with Symbian code then you will need to read Converting between Qt and Symbian Directory Separators.

