首页 热点专区 义务教育 高等教育 出国留学 考研考公

c# 如何调用CMD

发布网友 发布时间:9小时前

我来回答

2个回答

热心网友 时间:8小时前

Process xcopy = new Process();
xcopy.StartInfo.FileName = "cmd.exe";
xcopy.StartInfo.CreateNoWindow = true;
xcopy.StartInfo.UseShellExecute = false;
xcopy.StartInfo.RedirectStandardError = true;
xcopy.StartInfo.RedirectStandardInput = true;
xcopy.StartInfo.RedirectStandardOutput = true;
xcopy.Start();
xcopy.WaitForExit();
xcopy.Close();

热心网友 时间:8小时前

/// <summary>
/// 复制文件到指定目录
/// </summary>
/// <param name="Local_file">原文件绝对路径</param>
/// <param name="Copy_file">存放绝对路径</param>
/// <returns>true</returns>
public bool Create_File(String Local_file, String Copy_file )
{
if (!System.IO.Directory.Exists(Copy_file))
{
System.IO.Directory.CreateDirectory(Copy_file);//路径不存在创建
}
if (!System.IO.File.Exists(Local_file)) // 文件不存在
{
return false;
}
else
{
StringBuilder contents = new StringBuilder();
string cmd_type = "xcopy ";
contents.Append(cmd_type);
contents.Append(Local_file);
contents.Append(" ");
contents.Append(Copy_file);
contents.Append(@"/k ");
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.Start();//启动程序
p.StandardInput.WriteLine(contents);
p.StandardInput.WriteLine("exit");
string sOutput = p.StandardOutput.ReadToEnd();
Console.WriteLine(sOutput);
return true;
}

}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com