检查服务器c#office加载项上是否有电源点文件

时间:2016-09-17 09:46:01

标签: c# file hyperlink

我有一个qeustion,我正在编写一个代码,应该去服务器并检查是否存在power point文件。

代码正在运行,但问题是:我不知道power point文件的确切名称。

我使用了这段代码:

string test3 = @"http://bitnet/portfolio/Salesunterstuetzung/Kurzprofile/Abegg,%20Frank/BridgingIT_Kurzprofil_Frank_Abegg_20160803.pptx";
                WebClient r = new WebClient() { UseDefaultCredentials = true, Proxy = null };
                string content = r.DownloadString(test3);
                if (content == "") MessageBox.Show("wrong");
                else MessageBox.Show("right");

代码正常运行。它返回“正确”。但是如何编辑它以接受“.pptx”文件的任何名称。

非常感谢你。

1 个答案:

答案 0 :(得分:0)

经过三天的工作,我终于找到了解决方案:

阅读文件夹链接并带上内容,然后在内容中搜索字符串。

string test3 = @"http://bitnet/portfolio/Salesunterstuetzung/Kurzprofile/Abegg,%20Frank/";
                WebClient r = new WebClient() { UseDefaultCredentials = true, Proxy = null };

                string content = r.DownloadString(test3);
                if(Regex.Matches(content, ".pptx") != null)
                {
                    MessageBox.Show("right");
            }