From 7659c6ac95d3bf067da6d704fb5aba5d9862cac8 Mon Sep 17 00:00:00 2001 From: Eugene Wang Date: Thu, 10 Mar 2016 20:54:53 -0500 Subject: [PATCH] More search paths for #60 --- src/NTwain/PlatformInfo.cs | 42 ++++++++++++++++++++++------ src/NTwain/Properties/VersionInfo.cs | 2 +- 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/src/NTwain/PlatformInfo.cs b/src/NTwain/PlatformInfo.cs index 7a189f4..e18880e 100644 --- a/src/NTwain/PlatformInfo.cs +++ b/src/NTwain/PlatformInfo.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; +using System.Reflection; using System.Text; namespace NTwain @@ -37,14 +38,19 @@ namespace NTwain { _defaultMemManager = new WinMemoryManager(); - // only the new dsm can be loaded outside of windows folder - newDsmPath = GetFirstFilePathThatExists(Dsm.WIN_NEW_DSM_NAME, Environment.CurrentDirectory, Environment.SystemDirectory) ?? + // only the new twaindsm can be loaded outside of windows folder, twain_32 can't + newDsmPath = GetFirstFilePathThatExists(Dsm.WIN_NEW_DSM_NAME, + // should be same order as dllimport search order + GetExeFolder(), + AppDomain.CurrentDomain.BaseDirectory, + Environment.SystemDirectory, + GetWindowsFolder(), + Environment.CurrentDirectory) + ?? Path.Combine(Environment.SystemDirectory, Dsm.WIN_NEW_DSM_NAME); -#if NET35 - oldDsmPath = Path.Combine(Environment.GetEnvironmentVariable("windir"), Dsm.WIN_OLD_DSM_NAME); -#else - oldDsmPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), Dsm.WIN_OLD_DSM_NAME); -#endif + + oldDsmPath = Path.Combine(GetWindowsFolder(), Dsm.WIN_OLD_DSM_NAME); + PreferNewDSM = true; } else if (IsLinux) @@ -61,9 +67,29 @@ namespace NTwain } } + private string GetExeFolder() + { + var assembly = Assembly.GetEntryAssembly(); + if (assembly != null) + { + return Path.GetDirectoryName(assembly.Location); + } + return null; + } + private string GetWindowsFolder() + { +#if NET35 + return Environment.GetEnvironmentVariable("windir"); +#else + return Environment.GetFolderPath(Environment.SpecialFolder.Windows); +#endif + } + static string GetFirstFilePathThatExists(string filename, params string[] folders) { - return folders.Select(fdr => Path.Combine(fdr, filename)).FirstOrDefault(path => File.Exists(path)); + return folders.Where(fdr => fdr != null) + .Select(fdr => Path.Combine(fdr, filename)) + .FirstOrDefault(path => File.Exists(path)); } string oldDsmPath; diff --git a/src/NTwain/Properties/VersionInfo.cs b/src/NTwain/Properties/VersionInfo.cs index 7716d32..00a600c 100644 --- a/src/NTwain/Properties/VersionInfo.cs +++ b/src/NTwain/Properties/VersionInfo.cs @@ -23,7 +23,7 @@ namespace NTwain /// /// The build release version number. /// - public const string Build = "3.3.9.3"; // change this for each nuget release + public const string Build = "3.3.9.4"; // change this for each nuget release }