Ok.. so you use FileConnection? In FileConnection you need a string to determine which directory or folder you are accessing. What filepath do I need to use in order to get to the mobile phone's gallery?
example:
FileConnection fc = (FileConnection)Connector.open("<directory here>")
I have posted a similar question to a different discussion board and this is what "masterfu" posted:
Posted by masterfu:
"Okay, so you want the device to tell you where it's default place for images is?
You can query this by calling
Code:
String imageHome = System.getProperty("fileconn.dir.photos");
There are also quite a lot of other properties you can query using this method, for an overview see http://www.forum.nokia.com/info/sw.n..._2_en.zip.html"
I hope this works though.