在发一帖问问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
------解决方案--------------------
类似飞秋的共享文件夹的那种吗?
------解决方案--------------------客户发送指给服务器,服务器上运行设置代码。
这里也有一篇
http://msdn.microsoft.com/en-us/library/bb425864.aspx