I know its possible with Symbian C++
as the following code
void GetProcessListL(void)
{
TFullName res;
TFindProcess find;
while(find.Next(res) == KErrNone)
{
RProcess ph;
ph.Open(find);
// here you can use
// functions of the RProcess
// to get more information
// of the selected process.
// res will have the process name..
ph.Close();
}
}
However, is there a way to do this using only Qt?
As Symbian C++ is apparently obsolete, even Nokia does not recommend using it anymore.
thanks,