I had the same problem and solved it like this:
Code:
String imageStartDir = System.getProperty("fileconn.dir.memorycard");
String photoDir = System.getProperty("fileconn.dir.photos.name").substring(1);
imageStartDir += photoDir.substring(photoDir.indexOf('/') + 1);
String videoStartDir = System.getProperty("fileconn.dir.memorycard");
String videoDir = System.getProperty("fileconn.dir.videos.name").substring(1);
videoStartDir += videoDir.substring(videoDir.indexOf('/') + 1);
Does anyone know if this works on all S40 phones or just 3rd edition?