I am using Sysinternals Process Monitor to debug some incoming events and now I am trying to create a filter on Path and using wildcards. What I am trying to use is to filter path which begin with c:\MyApp\MyDocuments\Temp and ends with .pdf
Path filter should look like this: c:\MyApp\MyDocuments\Temp*.pdf
How can I do this?
AFAIK, this is not possible. You can just use
begins with
c:\MyApp\MyDocuments\Temp
and another filterends with
.pdf
.