How do I find a file that may not be fully-qualified by using the environment path?
问题 I have an executable name, like "cmd.exe" and need to resolve it's fully-qualified path. I know the exe appears in one of the directories listed in the PATH environment variable. Is there a way to resolve the full path without parsing and testing each directory in the PATH variable? basically I don't want to do this: foreach (string entry in Environment.GetEnvironmentVariable("PATH").Split(';')) ... There has to be a better way, right? 回答1: This seems like a pretty good way of doing it