如何从文件共享文件夹打开PDF-C#

时间:2019-05-02 15:16:13

标签: c# .net sharepoint adobe

因此,我在共享点上工作了一段时间,我陷入了困境。 我需要从共享文件夹中打开一个pdf文件,然后转到该pdf文件的链接:

"file://vrt-gdocdev7/DavWWWRoot/cd/Tramitar/2141_20190502100058.pdf"

现在,如果我将确切的字符串放在explorer.exe中,他将在adobe应用程序中打开确切的pdf。

我想要这样的结果,但是在c#代码中是这样的:用户单击按钮中的,并在adobe应用程序中打开pdf。

任何人都可以给我一些这样做的想法吗?我已经尝试过这样的想法:

-System.Diagnostics.Process.Start(testUrl); did not work...

-//OPENS BROWSER//Response.Redirect(uri.AbsoluteUri); not in the adobe application like I want...

-

static void openInExplorer(string path)
{
    string cmd = "explorer.exe";
    string arg =  + path;
    Process.Start(cmd, arg);
}

...还有一些,什么都没有。.

0 个答案:

没有答案