我正在做一个小项目,在 asp.net mvc3 中,它将部署文件从本地驱动器复制到 windows server 2008 R2 服务器上的共享驱动器。我使用WMI连接,连接成功。但是,我尝试创建一个文件夹,并收到消息“登录失败:未知用户名或密码错误”。这是一个示例代码:
bool isConnected = false;
options.Username = user.Name.Trim();
options.Password = user.password.Trim();
mScope = new ManagementScope("\\\\xxx.xxx.xxx.xxx\\root\\cimv2", options);
mScope.Connect();
if (mScope.IsConnected == true)
{
//I've gotten to this point. Then, the code below throw the exception
Directory.CreateDirectory(@"\\\\xxx.xxx.xxx.xxx\Tester\shareFile.txt");
isConnected = true;
}
我想知道我在做什么?这是正确的做法吗?