0

我需要使用 c# 查找文件的元数据。我使用的文件保存在第三方站点中。我可以从该服务器下载文件,但我无法获取我下载的文件的原始元数据。如何使用 c# 实现这一点。下面是我的代码。

string FilePath = AppDomain.CurrentDomain.BaseDirectory + @"Downloads\";
            string Url = txtUrl.Text.Trim();
            Uri _Url = new Uri(Url);
            System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(_Url);
            request.Timeout = Timeout.Infinite;
            System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();
            response.Close();
            if (response.ContentType != "text/html; charset=UTF-8")
            {
                string FileSize = response.Headers.Get("Content-Length");
                int lastindex = Url.LastIndexOf("/");
                string TempUrlName = Url.Substring(lastindex + 1, Url.Length - (lastindex + 1));

                WebClient oWebClient = new WebClient();
                oWebClient.DownloadFile(txtUrl.Text.Trim(), FilePath + @"\" + TempUrlName);
                if (File.Exists(FilePath + @"\" + TempUrlName))
                {
                    FileInfo oInfo = new FileInfo(FilePath + @"\" + TempUrlName);
                    DateTime time = oInfo.CreationTime;
                    time = oInfo.LastAccessTime;
                    time = oInfo.LastWriteTime;
                }
            }

只有将文件保存在本地后,我才能获取文件大小、创建时间、上次访问时间和上次写入时间。但是当文件位于使用 c# 的服务器中时,我需要文件元数据信息。

谢谢

4

1 回答 1

0

由于这些是存储在文件系统中的属性,并且在您将它们保存在本地后会更改,因此您将无法通过 HTTP 访问它们。

你对第三方有影响吗?也许让他们在标题中发送这些属性?

于 2013-05-27T09:49:33.833 回答