gpt4 book ai didi

c# - 如何使用进程执行 "del data.txt"?

转载 作者:行者123 更新时间:2023-11-30 21:13:42 26 4
gpt4 key购买 nike

以下琐碎的代码只是一个例子,并不反射(reflect)我的真实场景。我试过了,但没有用。

我想使用 Process 而不是使用 File 类删除 data.txt

using System;
using System.Diagnostics;

namespace Tester
{
class Program
{
static void Main(string[] args)
{
Process p = new Process();
p.StartInfo.FileName = "cmd";
p.StartInfo.Arguments = "del data.txt";
p.StartInfo.UseShellExecute=false;
p.EnableRaisingEvents = true;
p.Exited += (sender, e) => { Console.WriteLine("Finished"); };

p.Start();
p.WaitForExit();
}
}
}

如何使用Process执行del data.txt

最佳答案

您需要在进程中添加“/C”参数。

p.StartInfo.Arguments = "/C del data.txt";

关于c# - 如何使用进程执行 "del data.txt"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6706265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com