使⽤C#实现对⽂件的共享在C#中,如何对⼀个⽂件进⾏共享实现,⽤代码设置本地⽂件夹为共享⽂件夹?
代码如下:
1.引⼊命名空间:
using System.Diagnostics;
2.代码实现:
string shareName =
txtShareName.Text;
//共享名txtShareName
界⾯的⽂本框
string sharePath =
txtShareDisk.Text;    //
共享路径 txtShareDisk
界⾯的⽂本框
p.StartInfo.FileName =
"cmd";            //启动
程名称
//执⾏的命令
p.StartInfo.Arguments
=string.Format(" /c
net share {0}=
{1}",shareName,share
Path);
//窗⼝状态为隐藏
p.StartInfo.WindowStyl
e =
System.Diagnostics.Pr
ocessWindowStyle.Hid
den;
如何共享文件夹//启动进程不创建窗⼝
p.StartInfo.CreateNoW
indow = true;
p.StartInfo.UseShellEx
ecute = false;  //从可
执⾏⽂件创建进程
p.StartInfo.RedirectSta
ndardOutput = true;
//将输出写⼊流中
p.Start();  //启动进程
p.WaitForExit();  //设置
⽆限期等待关联的进程退
MessageBox.Show("设
置共享成功!");