如何从 Visual C# 应用程序执行批处理文件

How to execute batch file from visual c# application

这可能是一个非常具体的问题,但我如何在 c# 应用程序上方的子文件夹中执行批处理文件;我正在尝试使用按钮引用批处理文件:

    private void testButton_Click(object sender, EventArgs e)
    {
        System.Diagnostics.Process.Start("test.bat");
    }

尝试

private void testButton_Click(object sender, EventArgs e)
{
    System.Diagnostics.Process.Start(@"..\test.bat");
}