我有C#WinForm应用程序需要为某个文件夹设置共享权限,并指定用户具有读/写/删除权限。 我想知道是否有任何api或方式来调用类似于右键单击文件夹时选择属性/共享/高级共享并打开窗口。
如果您知道无论如何从c#调用此窗口,如果您分享您的知识,我将不胜感激。 我想打电话给这个窗口。
答案 0 :(得分:3)
此任务没有任何标准API。
尝试使用此项目来实现您需要的内容How to Share Windows Folders Using C#(此处还有另一个示例https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/de213b61-dc7e-4f33-acdb-893aa96837fa/c-set-directory-sharing-permission-full-control-for-everyone-programmatically-in-windows-7-or?forum=windowssdk)
请注意,您的应用程序需要以管理员权限运行才能共享文件夹。
答案 1 :(得分:1)
您可以通过Win32 API执行此操作:
private static void QshareFolder(string FolderPath, string ShareName, string Description)
{
try
{
// 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"] = Description;
inParams["Name"] = ShareName;
inParams["Path"] = FolderPath;
inParams["Type"] = 0x0; // Disk Drive
// Invoke the method on the ManagementClass object
outParams = managementClass.InvokeMethod("Create", inParams, null);
if ((uint)(outParams.Properties["ReturnValue"].Value) != 0)
{
throw new Exception("Unable to share directory.");
}
}
catch (Exception ex)
{
//MessageBox.Show(ex.Message, "error!");
}
}
使用方法: QshareFolder(“c:\ TestShare”,“测试份额”,“这是测试份额”);
来源:http://www.codeproject.com/Articles/18624/How-to-Share-Windows-Folders-Using-C