简单的主机应用程序通过特殊接口搜索程序集并从其中导入委托列表,现在它是Func<string,string>
。
然后它可以执行任何Func<T,T>
并且没有问题。
当任何Func
尝试访问不存在的文件时,问题就开始了。
没有try-catch块,没有File.Exists
没有帮助 - 当函数尝试访问文件时(无论如何,读取,获取流,检查等) - 整个应用程序都失败了FileNotFound
在mscorlib
。
如何解决这个问题?应用程序非常关键,我无法在应用程序中执行文件检查,只能在程序集中执行。
UPD:是的,该代表包含async
逻辑。
UPD2:代码部分:
try
{
if(!File.Exists(filePath)) return null;
using (StreamWriter writer = new StreamWriter(destinationFilePath))
{
using (StreamReader reader = new StreamReader(filePath))
{
//some logic there
}
}
}
catch
{
}
File.Exists()抛出异常。
此代码用于导入程序集。
Commands = new Dictionary<string, Func<string, string>>();
foreach (string f in fileNames)
{
Assembly asm = Assembly.LoadFrom(f);
var types = asm.GetTypes();
foreach(Type t in types)
{
if (t.GetInterface("IMountPoint") != null)
{
var obj = Activator.CreateInstance(t);
var cmds = ((IMountPoint)obj).Init(EntryPoint);
foreach (var cmd in cmds)
{
if (!Commands.ContainsKey(cmd.Key.Trim().ToUpper()))
{
Commands.Add(cmd.Key.Trim().ToUpper(), cmd.Value);
}
}
}
}
}
此代码用于运行委托:
string input = Console.ReadLine();
string res = Commands[command_key](input);
答案 0 :(得分:0)
那是可耻的。 我正在使用后期绑定并忘记手动复制程序集,因此具有文件存在检查的程序集不会被应用程序加载并使用旧的程序集。 对不起,伙计们。