How to launch an EXE?
Question
I have an APP that needs to be able to launch a standalone EXE file?
> I've found lots of information about launching apps but very little
> about launching EXEs. I need to be able to launch exe's like
Answer
You use RProcess. For details, see the documentation, but here's an
example:
TFileName fnAppPath = _L("\\system\\apps\\starter\\starter.exe");
RProcess server;
CleanupClosePushL(server);
User::LeaveIfError(server.Create(fnAppPath, _L("")));
server.Resume();
CleanupStack::PopAndDestroy();