handled files
C#
5
Posts
3
Posters
0
Views
1
Watching
-
how can i get all files handled by a specific process without using WMI in c#?
-
how can i get all files handled by a specific process without using WMI in c#?
-
Do you mean this one? foreach(ProcessModule pm in Process.GetCurrentProcess().Modules) { Console.WriteLine(pm.FileName); }
No,I didn't mean modules of a process. What i need get non executable files associated to a process like .doc , .pdf
-
No,I didn't mean modules of a process. What i need get non executable files associated to a process like .doc , .pdf
-
one of running processes in the windows task manager is winword.exe I need to retrieve all running files with .doc extension(as an example)