Sharepoint 在线 CSOM 生成列表项显示 url

Sharepoint online CSOM generate list item display url

我在桌面应用程序中有一个文件列表,它是从 Sharepoint 在线文档库中获取的。我想要做的是提供一种在浏览器中显示该文件的可能性。但我无法生成正确的 url.

这是获取文档库中文件 url 的 csom 代码片段:

           using (ClientContext ctx = new ClientContext("https://zheguo.sharepoint.com/sites/dev/"))
            {

                ctx.Credentials = new SharePointOnlineCredentials(account, secret);
                ctx.Load(ctx.Web);
                ctx.ExecuteQuery();

                List targetList = ctx.Web.Lists.GetByTitle("Documents");

                ListItemCollection ItemCol = targetList.GetItems(CamlQuery.CreateAllItemsQuery());
                ctx.Load(ItemCol);
                ctx.ExecuteQuery();
                    foreach (Microsoft.SharePoint.Client.ListItem item in ItemCol)
                    {
                        if (item.FileSystemObjectType == FileSystemObjectType.File)
                        {
                            Console.WriteLine(new Uri(ctx.Url).GetLeftPart(UriPartial.Authority) + item["FileRef"]);
                        }

                    }
            }

参考:

Getting the Absolute URL of a File in CSOM