1

对于我正在处理的模块,我收到了一个编译的 Matlab 可执行文件(注意它是一个独立的 .exe,而不是 .dll 或类似的东西),我必须执行它来为我做一些分析工作。

工作流程是创建一个输入文件(简单的 .csv 格式),执行 .exe 并解析由 Matlab 可执行文件生成的输出文件(也是 .csv)。

我已经测试了输入文件生成和输出文件解析,如果我自己这么说的话,它们工作得很好。但是我在运行 Matlab 可执行文件时遇到了一些麻烦。我安装了正确的 MCR,我可以双击可执行文件,它按预期运行。但是使用以下代码,可执行文件无法正确执行:

    var analyzer = new Process
    {
        StartInfo =
        {
            FileName = Path.Combine(WorkDirectory, "analyzer.exe"),
            CreateNoWindow = false,
            WindowStyle = ProcessWindowStyle.Hidden,
            UseShellExecute = false, RedirectStandardError = true, RedirectStandardOutput = true // These lines were added for debugging purposes
        }
    };
    analyzer.Start();
    punProcess.WaitForExit();
    string debuginfo = punProcess.StandardOutput.ReadToEnd();
    string debuginfo2 = punProcess.StandardError.ReadToEnd();

我从“debuginfo”中提取的文本如下:

     {Warning: Name is nonexistent or not a directory: C:\MATLAB\R2009b\toolbox\pun.} 
     {> In path at 110
        In addpath at 87
        In startup at 1} 
     {Warning: Name is nonexistent or not a directory:
     C:\MATLAB\R2009b\toolbox\pun\pun.} 
     {> In path at 110
        In addpath at 87
        In startup at 2} 

我从“debuginfo2”中提取的文本是:

     {Error using textscan
     Invalid file identifier.  Use fopen to generate a valid file identifier.

     Error in readin (line 4)

     Error in Analyzer (line 12)

     } 
     MATLAB:FileIO:InvalidFid

这些问题是由于我的代码造成的吗?它们是由于通过 C# 使用它的上下文吗?还是分析仪本身有问题?我无权访问分析器可执行文件的源代码,因此无法调试该部分。

发生的错误,可能是因为给出的警告,并且我错过了某种引用(可能是对 MCR?),当我双击它(或从 cmd 运行它时)隐式可用,也像魅力)?

工作目录签出。我可以看到以前的 C# 代码在那里创建的输入文件,以及在那里复制的可执行文件。所以问题不是由于在正确的位置准备正确的文件时出错。

干杯,Xilconic

4

1 回答 1

2

As Dmitriy Reznik commented, specifying the WorkingDirectory of the StartInfo solved the problem I was having. Is should look like this:

var analyzer = new Process
{
    StartInfo =
    {
        FileName = Path.Combine(WorkDirectory, "analyzer.exe"),
        WorkingDirectory = WorkDirectory
        CreateNoWindow = false,
        WindowStyle = ProcessWindowStyle.Hidden,
        UseShellExecute = false, RedirectStandardError = true, RedirectStandardOutput = true // These lines were added for debugging purposes
    }
};
analyzer.Start();
punProcess.WaitForExit();
于 2012-08-22T09:40:08.437 回答