AvalonStudio.CommandLineTools.PlatformSupport.CheckExecutableAvailability C# (CSharp) Method

CheckExecutableAvailability() public static method

Checks whether a script executable is available in the user's shell
public static CheckExecutableAvailability ( string fileName ) : bool
fileName string
return bool
        public static bool CheckExecutableAvailability(string fileName, params string[] extraPaths)
        {            
            return ResolveFullExecutablePath(fileName, true, extraPaths) != null;
        }