好吧,我想打开名称包含特定字符串的 pdf 文件。
这是我以前看到的代码是否有一个名称包含字符串的文件:
if (Directory.EnumerateFiles(startInfo.Arguments).Any(PDFfile=>PDFfile.Contains(myString)))
{
MessageBox.Show("Jackpot");
}
else
{
MessageBox.Show("There is no file!");
}
我收到“Jackpot”味精,现在如何打开该文件?!我知道我应该使用:
Process.Start(startInfo);
但这是当您准确指定文件的路径时。