代码如下:
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("设
置共享成功!");
发布评论