More search paths for #60

This commit is contained in:
Eugene Wang 2016-03-10 20:54:53 -05:00
parent abbbad16c9
commit 7659c6ac95
2 changed files with 35 additions and 9 deletions

View File

@ -5,6 +5,7 @@ using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Reflection;
using System.Text; using System.Text;
namespace NTwain namespace NTwain
@ -37,14 +38,19 @@ namespace NTwain
{ {
_defaultMemManager = new WinMemoryManager(); _defaultMemManager = new WinMemoryManager();
// only the new dsm can be loaded outside of windows folder // only the new twaindsm can be loaded outside of windows folder, twain_32 can't
newDsmPath = GetFirstFilePathThatExists(Dsm.WIN_NEW_DSM_NAME, Environment.CurrentDirectory, Environment.SystemDirectory) ?? 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); Path.Combine(Environment.SystemDirectory, Dsm.WIN_NEW_DSM_NAME);
#if NET35
oldDsmPath = Path.Combine(Environment.GetEnvironmentVariable("windir"), Dsm.WIN_OLD_DSM_NAME); oldDsmPath = Path.Combine(GetWindowsFolder(), Dsm.WIN_OLD_DSM_NAME);
#else
oldDsmPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), Dsm.WIN_OLD_DSM_NAME);
#endif
PreferNewDSM = true; PreferNewDSM = true;
} }
else if (IsLinux) 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) 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; string oldDsmPath;

View File

@ -23,7 +23,7 @@ namespace NTwain
/// <summary> /// <summary>
/// The build release version number. /// The build release version number.
/// </summary> /// </summary>
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
} }