search executable using PATH env variable

This commit is contained in:
Vadim Lopatin 2015-02-17 11:01:07 +03:00
parent 90429a84fd
commit ae12dd12b9
1 changed files with 29 additions and 0 deletions

View File

@ -339,3 +339,32 @@ string[] splitPath(string path) {
}
return res;
}
/// for executable name w/o path, find absolute path to executable
string findExecutablePath(string executableName) {
import std.algorithm;
import std.string;
version (Windows) {
if (!executableName.endsWith(".exe"))
executableName = executableName ~ ".exe";
}
string currentExeDir = dirName(thisExePath());
string inCurrentExeDir = absolutePath(buildNormalizedPath(currentExeDir, executableName));
if (exists(inCurrentExeDir) && isFile(inCurrentExeDir))
return inCurrentExeDir; // found in current directory
string pathVariable = environment.get("PATH");
if (!pathVariable)
return null;
string[] paths;
version(Windows) {
paths = pathVariable.split(";");
} else {
paths = pathVariable.split(":");
}
foreach(path; paths) {
string pathname = absolutePath(buildNormalizedPath(path, executableName));
if (exists(pathname) && isFile(pathname))
return pathname;
}
return null;
}