我正在将“命令提示符”重新创建到 Windows 窗体中。应用程序无法正常运行;我找不到错误。
exiftool photo_file.jpg |find "Shutter Count"
这是命令在命令提示符下正常工作。知道我在这里缺少什么吗?
private void btncheck_Click(object sender, EventArgs e)
{
String StrCmdText;
var process = Process.Start("CMD.exe", "/c exiftool " + txtBrowse.Text + " |find "Shutter Count"");
process.WaitForExit();
}