日期:2014-05-17  浏览次数:20826 次

C#设置共享权限真的很难?
想用C#代码把共享文件夹的权限设置为everyone可读写。

这个用C#真的很难吗?

C#真的不怎么样啊。

------解决方案--------------------
语言只是工具,实现方式还要使用人的方式和方法咯。
你觉得很难?
C#->文件夹权  不可行
不可行

我来看呢
C#->dos命令->文件夹权限 可行

另外:你觉得C#没有那种 大喊一声:"把文件夹权限设置成everyone可读写"的功能就是所谓的不怎么样了,我觉得你很有必要停止编程,去反思自己为什么要去学编程了。

------解决方案--------------------
引用命令空间:using System.Security.AccessControl;

string path = "mytest";
DirectorySecurity ds = new DirectorySecurity();
ds.AddAccessRule(new FileSystemAccessRule("everyone", FileSystemRights.ReadAndExecute 
------解决方案--------------------
 FileSystemRights.Write, InheritanceFlags.ContainerInherit 
------解决方案--------------------
 InheritanceFlags.ObjectInherit, PropagationFlags.None, AccessControlType.Allow));
System.IO.Directory.SetAccessControl(path, ds);

------解决方案--------------------
/*
 * Created by SharpDevelop.
 * User: Administrator
 * Date: 2007/07/03
 * Time: 14:02
 * 
 * To change this template use Tools 
------解决方案--------------------
 Options 
------解决方案--------------------
 Coding 
------解决方案--------------------
 Edit Standard Headers.
 */

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.Management;

namespace Share
{
/// <summary>
/// Description of MainForm.
/// </summary>
public partial class MainForm
{
[STAThread]
public static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}

public MainForm()
{
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();

//
// TODO: Add constructor code after the InitializeComponent() call.
//
}

void Button1Click(object sender, System.EventArgs e)
{
shareFolder("d:\\","D","Description");
}

 private void shareFolder(string FolderPath, string ShareName, string Description)
         {// 创建共享目录  
             try
             {
                 ManagementClass managementClass = new ManagementClass("Win32_Share");
                 ManagementBaseObject inParams = managementClass.GetMethodParameters("Create");