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

在发一帖问问C#共享文件夹的问题,
详情
http://bbs.csdn.net/topics/390436199

代码都一样的就是共享不成功。

------解决方案--------------------
也许你的问题 就有问题,为什么要c#来做共享分件夹呢?
------解决方案--------------------
你能换个方式做吗?比如说做成上传下载的那种
------解决方案--------------------
文件夹共享的试试。



            DirectorySecurity ds=new DirectorySecurity();
            IdentityReference id = new SecurityIdentifier(WellKnownSidType.WorldSid, null);
            ds.SetGroup(id);
            Directory.SetAccessControl("d://folder", ds);


------解决方案--------------------
这里有个例子。

http://msdn.microsoft.com/zh-cn/library/system.security.accesscontrol.directorysecurity.aspx

------解决方案--------------------
引用:
引用:你能换个方式做吗?比如说做成上传下载的那种

我要做成客户端的那种方式。就是本地运行的winform的那种。

类似飞秋的共享文件夹的那种吗?
------解决方案--------------------
客户发送指给服务器,服务器上运行设置代码。

这里也有一篇
http://msdn.microsoft.com/en-us/library/bb425864.aspx