我发现这个帖子很有帮助,我想问问 Ian Norton 关于他的包装。 这是IanNorton发布的我正在尝试的包装器的链接。我不确定这是否是正确的提问地点,而且当涉及到他的回复时,我也不想创建一个新线程。因此,我将继续前进,忍受任何可能出现的反弹。
我目前正在尝试使用您的包装器,但当我运行它时,我似乎无法让它触发任何东西。我不想使用选项,因为我只想将其设置为在计时器上运行的 .exe。很简单,我想使用 p4 打开 -a cmd 并将输出输出打印到文件中。这就对了。这个 NooB 将不胜感激任何帮助。
非常感谢你!
这是我仅使用命令行所得到的。不幸的是,我无法将我的信息输出到文本文件。
using System;
using System.Diagnostics;
using System.IO;
namespace P4OpenCMD
{
class P4Opened
{
// Main begins program execution.
static void Main(string[] args)
{
string temp = string.Empty;
if (temp != string.Empty)
{
Process p = new Process();
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "cmd.exe";
info.RedirectStandardInput = true;
info.UseShellExecute = false;
p.StartInfo = info;
p.Start();
StreamWriter sw = p.StandardInput;
using (sw = p.StandardInput)
{
if (sw.BaseStream.CanWrite)
{
sw.WriteLine("set P4PORT=####");
sw.WriteLine("set P4USER=####");
sw.WriteLine("set P4CLIENT=####");
sw.WriteLine("set P4PASSWD=####");
sw.WriteLine("p4 opened -a //Depot/...");
sw.WriteLine("pause;");
}
Console.WriteLine();
}
sw.Close();
p.WaitForExit();
p.Close();
}
}
}
}