在C#中,你可以使用System.Diagnostics
命名空间中的Process
类来执行DOS命令
using System;
using System.Diagnostics;
class Program
{
static void Main()
{
// 要执行的DOS命令,例如:dir
string command = "dir";
// 创建一个ProcessStartInfo对象,用于存储命令的属性
ProcessStartInfo startInfo = new ProcessStartInfo();
// 设置要执行的命令和参数
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/c " + command;
// 设置使用当前用户的身份运行命令
startInfo.UseShellExecute = false;
// 防止生成新的窗口
startInfo.CreateNoWindow = true;
// 创建一个新的Process对象,并传入ProcessStartInfo对象
Process process = new Process();
process.StartInfo = startInfo;
// 开始执行命令
process.Start();
// 等待命令执行完成
process.WaitForExit();
}
}
这个示例将执行dir
命令,你可以将其替换为任何其他DOS命令。请注意,这个示例使用了cmd.exe
来执行命令,因为Windows系统默认使用命令提示符来运行DOS命令。