1
Answer

ProcessInfo

Photo of kzone

kzone

20y
3.1k
1
Anyone know how to get the Full Path of a process in the Process List i Tried getting it's start info and .WorkingDirectory but it was all blank. Sample: Process[] xi= Process.GetProcessesByName(proc); ListViewItem fo = applist.Items.Add(xi[0].ProcessName.ToString()); string dir = xi[0].StartInfo.WorkingDirectory.ToString() + xi[0].ProcessName.ToString() + ".exe";

Answers (1)