如何共享远程文件夹?

时间:2011-06-13 15:35:04

标签: c# .net windows-server

我正在开发一个.NET类,它将用于管理我们的Active Directory帐户的工具中。我们的每个帐户都有一个网络主目录,可以位于几个不同的服务器上,具体取决于我们正在使用的帐户类型。

我可以很好地创建和删除文件夹,但是我在共享文件夹时遇到了麻烦。 I found some code here这似乎是我想要的,但它对我不起作用。我得到的返回值是2,但我不确定这表示什么。

这不应该是文件权限问题,因为我正在以我自己的身份运行我的测试应用程序,并且我完全控制了我正在尝试共享的文件夹(及其每个父文件夹)。

这是我的(修改过的)代码版本:

char[] delim = { '\\' };
// folderPath is a string (UNC path)
string[] drivePath = folderPath.Split(delim); 

// Create a ManagementClass object
ManagementClass managementClass = new ManagementClass("Win32_Share");

// Create ManagementBaseObjects for in and out parameters
ManagementBaseObject inParams = 
    managementClass.GetMethodParameters("Create");
ManagementBaseObject outParams;

// Set the input parameters
inParams["Description"] = "";
inParams["Name"] = drivePath[3];
inParams["Path"] = folderPath;
inParams["Type"] = 0x0; // Disk Drive

// Invoke the method on the ManagementClass object
outParams = managementClass.InvokeMethod("Create", inParams, null);

我已经尝试输出其他的outParams,但它看起来就像我得到的ReturnValue。

是否有不同的方式来共享可以更好地工作的远程文件夹?

1 个答案:

答案 0 :(得分:1)

我会自己回答,以防其他人稍后再发现。

我最终选择了使用PSExec和NET SHARE的非常不正确的答案:

// Retrieve drive path from AD
char[] delim = { '\\' };
string[] drivePath = userAD.HomeDirectory.Split(delim);

// Configure startup properties of process
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.FileName = "C:\\Windows\\System32\\psexec.exe";

// Build arguments for folder on alpha or student
startInfo.Arguments = "\\\\" + serverName + " -s net share " + shareName + "=" folderPath + "$ /GRANT:\"authenticated users\",full";

Process process = new Process();

process.StartInfo = startInfo;
process.Start();
process.WaitForExit();

请注意,在我们的环境中,程序已经在对共享文件夹具有完全控制权限的用户下运行。要允许非特权用户使用类似用户,您必须在startInfo.Arguments中指定名称和密码。