Example #1
0
 public static string LocateInProgramFiles(string exeName, bool fallBackToDeepSearch,
                                           params string[] subFoldersToSearch)
 {
     return(FileLocationUtilities.LocateInProgramFiles(exeName, fallBackToDeepSearch, subFoldersToSearch));
 }
Example #2
0
 public static string GetDirectoryDistributedWithApplication(params string[] partsOfTheSubPath)
 {
     return(FileLocationUtilities.GetDirectoryDistributedWithApplication(partsOfTheSubPath));
 }
Example #3
0
 public static string LocateExecutable(params string[] partsOfTheSubPath)
 {
     return(FileLocationUtilities.LocateExecutable(partsOfTheSubPath));
 }
Example #4
0
 public static string GetFileDistributedWithApplication(bool optional, params string[] partsOfTheSubPath)
 {
     return(FileLocationUtilities.GetFileDistributedWithApplication(optional, partsOfTheSubPath));
 }
Example #5
0
 public static string LocateExecutable(bool throwExceptionIfNotFound, params string[] partsOfTheSubPath)
 {
     return(FileLocationUtilities.LocateExecutable(throwExceptionIfNotFound, partsOfTheSubPath));
 }