在Reflected方法调用中访问网络共享

时间:2011-10-20 18:30:49

标签: c# reflection

我们有一种访问网络共享的方法。直接调用时此方法可以正常工作,但是当通过reflecton调用它时会得到System.IO.IOException。看起来用户上下文不可用于反射代码(请参阅下面的堆栈跟踪)。有办法防止这种情况吗?

System.Reflection.TargetInvocationException: Exception has been thrown by 
the target of an invocation. ---> System.IO.IOException: Logon failure:
unknown user name or bad password.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.Directory.InternalGetFileDirectoryNames(String path, 
String userPathOriginal, String searchPattern, Boolean includeFiles,
Boolean includeDirs, SearchOption searchOption)
at System.IO.Directory.GetDirectories(String path, String searchPattern, 
SearchOption searchOption)

这是有效的

   Library.Class obj =new Library.Class();
   obj.Execute(serverPath);

这不起作用

    Assembly assembly = Assembly.LoadFile(@"pathTo\Library.dll");
    Type type = assembly.GetType("Library.Class");
    MethodInfo executeMethod = type.GetMethod("Execute");
    object classInstance = Activator.CreateInstance(type, null);
    object[] parameterArray = new object[] { serverPath};
    executeMethod.Invoke(classInstance, parameterArray);

其中Library.Class.execute定义为

public void Execute(string serverPath){
   string[] directories = Directory.GetDirectories(serverPath, 
                          "1.*", SearchOption.TopDirectoryOnly);
    foreach (var directory in directories) {
        Console.WriteLine(directory);    
    }
}

serverPath是需要用户输入凭据的网络共享。

----- 更新1 -------

这似乎有些环保 - 我至少有一台测试机,一切正常。我将进行更多测试,以确定哪些差异很重要。

2 个答案:

答案 0 :(得分:0)

您可能想尝试这些来获取当前目录:

AppDomain.CurrentDomain.BaseDirectory

System.Reflection.Assembly.GetExecutingAssembly()。位置

答案 1 :(得分:0)

这似乎是某种侥幸的环境问题。由于重新启动了测试机器,我们无法重现该问题。