mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 10:50:24 +08:00
Updated logic to look for twaindsm.dll in current folder as well (#60).
This commit is contained in:
parent
42cbd75765
commit
abbbad16c9
@ -37,7 +37,9 @@ namespace NTwain
|
||||
{
|
||||
_defaultMemManager = new WinMemoryManager();
|
||||
|
||||
newDsmPath = Path.Combine(Environment.SystemDirectory, Dsm.WIN_NEW_DSM_NAME);
|
||||
// only the new dsm can be loaded outside of windows folder
|
||||
newDsmPath = GetFirstFilePathThatExists(Dsm.WIN_NEW_DSM_NAME, Environment.CurrentDirectory, Environment.SystemDirectory) ??
|
||||
Path.Combine(Environment.SystemDirectory, Dsm.WIN_NEW_DSM_NAME);
|
||||
#if NET35
|
||||
oldDsmPath = Path.Combine(Environment.GetEnvironmentVariable("windir"), Dsm.WIN_OLD_DSM_NAME);
|
||||
#else
|
||||
@ -59,6 +61,11 @@ namespace NTwain
|
||||
}
|
||||
}
|
||||
|
||||
static string GetFirstFilePathThatExists(string filename, params string[] folders)
|
||||
{
|
||||
return folders.Select(fdr => Path.Combine(fdr, filename)).FirstOrDefault(path => File.Exists(path));
|
||||
}
|
||||
|
||||
string oldDsmPath;
|
||||
string newDsmPath;
|
||||
|
||||
@ -84,7 +91,7 @@ namespace NTwain
|
||||
ExpectedDsmPath = newDsmPath;
|
||||
IsSupported = DsmExists = File.Exists(ExpectedDsmPath);
|
||||
UseNewWinDSM = true;
|
||||
Log.Debug("Using new dsm in windows.");
|
||||
Log.Debug("Using new dsm.");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -92,7 +99,7 @@ namespace NTwain
|
||||
{
|
||||
ExpectedDsmPath = newDsmPath;
|
||||
UseNewWinDSM = IsSupported = DsmExists = true;
|
||||
Log.Debug("Using new dsm in windows.");
|
||||
Log.Debug("Using new dsm.");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -23,7 +23,7 @@ namespace NTwain
|
||||
/// <summary>
|
||||
/// The build release version number.
|
||||
/// </summary>
|
||||
public const string Build = "3.3.9.2"; // change this for each nuget release
|
||||
public const string Build = "3.3.9.3"; // change this for each nuget release
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user