test.txt" 命令保存文件。 然而,该程序以某种方式生成了一定数量的报告,但不是-6ren">
gpt4 book ai didi

c# - 如何将 STDOUT 输出保存到文本文件?

转载 作者:太空狗 更新时间:2023-10-30 00:21:39 39 4
gpt4 key购买 nike

我有一个程序利用第 3 方命令行工具生成日志。第 3 方将其所有输出生成到 STDOUT,用户必须随后使用 "> test.txt" 命令保存文件。

然而,该程序以某种方式生成了一定数量的报告,但不是整个报告。这是通过使用命令进行测试的

C:\Test\ftk\ripxp>ripxp.exe -r C:\test\ftk\ntuser.dat -d "C:\System Volume\_rest
ore{BB12863B-2C77-46C9-BCDA-1810E52F1089}"-p runmru > C:\test\test05.txt

在运行的命令行控制台和仅部分运行的程序上。

错误被缩小到参数错误或文件保存错误部分(streamReader)。因此,错误可能是由于未正确保存 STDOUT。

因此,有人可以就代码提出建议吗?谢谢!

第 3 方工具的参数(2008 H. Carvey):

RipXP v.20081001 - CLI RegRipper tool
RipXP [-r Reg hive file] [-p plugin module][-d RP dir][-lgh]
Parse Windows Registry files, using either a single module from the plugins folder.
Then parse all corresponding hive files from the XP Restore Points (extracted from
image) using the same plugin.

-r Reg hive file...Registry hive file to parse
-g ................Guess the hive file (experimental)
-d RP directory....Path to the Restore Point directory
-p plugin module...use only this module
-l ................list all plugins
-h.................Help (print this information)

Ex: C:\>rip -g
C:\>rip -r d:\cases\ntuser.dat -d d:\cases\svi -p userassist

All output goes to STDOUT; use redirection (ie, > or >>) to output to a file.

copyright 2008 H. Carvey

代码:

static void Main(string[] args)
{
// Automatically finds folder that starts with _restore
DirectoryInfo directoryInfo = new DirectoryInfo(@"C:\System Volume\");
DirectoryInfo restoreFolder = directoryInfo.GetDirectories().FirstOrDefault(d => d.Name.StartsWith("_restore"));

// Gets the folder name
String baka = restoreFolder.Name;

if (restoreFolder == null)
throw new DirectoryNotFoundException();

Process process = new Process();
process.StartInfo.FileName = @"C:\test\ftk\ripxp\ripxp.exe";
process.StartInfo.Arguments = @"-r C:\test\ftk\ntuser.dat -d C:\System Volume\" + restoreFolder.Name + " -p runmru";
process.StartInfo.CreateNoWindow = false;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardInput = true;
process.StartInfo.RedirectStandardError = true;
process.Start();

String text = @"-r C:\test\ftk\ntuser.dat -d C:\System Volume\" +restoreFolder.Name + " -p runmru";
Console.WriteLine(baka);
Console.WriteLine(text);

// Strangely the program only outputs the first section "-r C:\test\ftk\ntuser.dat" argument results.....
System.IO.StreamReader reader = process.StandardOutput;
String sRes = reader.ReadToEnd();
StreamWriter SW;
SW = File.CreateText(@"C:\test\test01.txt");
SW.WriteLine(sRes);
SW.Close();
Console.WriteLine("File Created Successfully");
reader.Close();

}

最佳答案

您是否正在等待子进程完成?看起来你太早开始阅读它的输出了。可以这样做:

process.Start();
process.WaitForExit();

此外,您可以在完成之前通过委托(delegate)开始接收输出。像这样(为每一行文本调用委托(delegate)):

process.OutputDataReceived += delegate(object sender, DataReceivedEventArgs e)
{
// Store e.Data somewhere.
};

关于c# - 如何将 STDOUT 输出保存到文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4440402/

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