And here's an example of how you can see the applications that you can start with Python. Note that this isn't the exact solution, as finding the names of the exe files is a bit ambiguous (at least for me
).
Code:
import os, e32, appuifw
#Make an emptry list, which will be populated with the names of the exe
l=[]
for f in os.listdir("Z:\\resource\\apps"):
if(f.endswith(".mif") and not f.endswith("_aif.mif")):
l.append(unicode(f[0:len(f)-4]))
#Show a list with the found exe
i=appuifw.selection_list(l)
#Start the selected app
e32.start_exe("z:\\system\\apps\\"+l[i]+".exe",'',1)