在C#中读取一个txt文件

时间:2015-08-30 09:16:19

标签: c# asp.net streamreader

我的代码隐藏文件中有一些带有一些C#代码的.aspx页面。

我想在命令提示符下执行命令并将输出保存到.txt文件。这样可以创建一个新的.txt文件。

然后我想从.txt文件中读取第一行并将该字符串存储在变量中。

我当前的代码如下,但它会抛出“文件无法读取”。我的代码中的错误消息。为什么会这样,我该如何解决这个问题?

更新: 所以我从原来的帖子中修改了我的代码并添加了一个检查,以便在读取之前查看'archivo_resultado'是否存在。但是,debugview输出

"archivo_resultado doesn't exist."

因此当然尝试阅读它会引发错误。

在命令提示符中执行以下命令的最有效方法是什么:

'ejecutable_CheckMac + " " + archivo_temporal'

并将输出字符串存储在变量和文件(archivo_resultado)中?

        string ejecutable_CheckMac = "C:\\inetpub\\wwwroot\\cgi-bin\\tbk_check_mac.exe";
        var archivo_temporal = "C:\inetpub\wwwroot\cgi-bin\log\DatosParaCheckMac_100942.txt";
        var archivo_resultado = "C:\inetpub\wwwroot\cgi-bin\log\ResultadoCheckMac_100942.txt";

        System.Diagnostics.Debugger.Log(0, null, "Declare cmd variable.");
        string cmd = ejecutable_CheckMac + " " + archivo_temporal + " > " + archivo_resultado;
        System.Diagnostics.Debugger.Log(0, null, "cmd: " + cmd);

        System.Diagnostics.Debugger.Log(0, null, "Start cmd execution.");
        System.Diagnostics.Process process = new System.Diagnostics.Process();

        var startInfo = new System.Diagnostics.ProcessStartInfo("cmd", "/c " + cmd);
        startInfo.UseShellExecute = false;
        startInfo.CreateNoWindow = true;
        startInfo.RedirectStandardOutput = true;

        System.Diagnostics.Process.Start(startInfo);

        if (File.Exists(archivo_resultado))
        {
            System.Diagnostics.Debugger.Log(0, null, "archivo_resultado exists.");             
        }
        else
        {
            System.Diagnostics.Debugger.Log(0, null, "archivo_resultado doesn't exist.");
        }

        string returnedLine = "";
        try
        {
            System.Diagnostics.Debugger.Log(0, null, "Start - StreamReader to read archivo_resultado: " + archivo_resultado);
            using (StreamReader sr = new StreamReader(archivo_resultado))
            {
                returnedLine = sr.ReadLine() ?? "";
                Console.WriteLine(returnedLine);
                System.Diagnostics.Debugger.Log(0, null, "archivo_resultado: " + returnedLine);
            }
            System.Diagnostics.Debugger.Log(0, null, "Finished - StreamReader to read archivo_resultado: " + archivo_resultado);
        }
        catch (Exception Ex2)
        {
            System.Diagnostics.Debugger.Log(0, null, "The file could not be read.");
            Console.WriteLine(Ex2.Message);
        }

1 个答案:

答案 0 :(得分:0)

        string checkMacOutcome = "";
        var psi = new System.Diagnostics.ProcessStartInfo(ejecutable_CheckMac, archivo_temporal);
        psi.UseShellExecute = false;
        psi.CreateNoWindow = true;
        psi.RedirectStandardOutput = true;

        using (var proc = System.Diagnostics.Process.Start(psi))
        {
            using (StreamReader sr = proc.StandardOutput)
            {
                checkMacOutcome = sr.ReadToEnd();
            }
        }

        StreamWriter writetext = new StreamWriter(archivo_resultado);
        writetext.WriteLine(checkMacOutcome);
        writetext.Close();