c#怎样访问内网共享目录(有帐号的)
如下代码在哪加入访问帐号,不能给用户输,我用net use..... pwd/user 也不行
                         using (System.Diagnostics.Process p = new System.Diagnostics.Process())
                         {                                                   
                             p.StartInfo = new System.Diagnostics.ProcessStartInfo(openfile);
                             p.Start();                                                                         
                             p.WaitForExit();
                             p.Dispose();
                             openfile = null;
                         }
------解决方案--------------------
C# 实现访问网络共享文件夹