C# 判斷遠端檔案是否存在

iDotNetSpace發表於2010-04-22
//1:
public static bool IsExist(string uri)
        {
            HttpWebRequest req 
= null;
            HttpWebResponse res 
= null;
            
try
            {
                req 
= (HttpWebRequest)WebRequest.Create(uri);
                req.Method 
= "HEAD";
                req.Timeout 
= 100;
                res 
= (HttpWebResponse)req.GetResponse();
                
return (res.StatusCode == HttpStatusCode.OK);
            }
            
catch
            {
                
return false;
            }
            
finally
            {
                
if (res != null)
                {
                    res.Close();
                    res 
= null;
                }
                
if (req != null
                {
                    req.Abort();
                    req 
= null;
                }
            }
        } 

//2:

private bool UrlExistsUsingXmlHttp(string url)
{
  
//注意:此方法需要引用Msxml2.dll
  MSXML2.XMLHTTP _xmlhttp = new MSXML2.XMLHTTPClass();
  _xmlhttp.open(
"HEAD", url, falsenullnull);
  _xmlhttp.send(
"");
  
return (_xmlhttp.status == 200);
}

//3:
private bool UrlExistsUsingSockets(string url)
{
  
if (url.StartsWith("http://")) url = url.Remove(0"http://".Length);
  
try
  {
    System.Net.IPHostEntry ipHost 
=System.Net.Dns.GetHostEntry(url);// System.Net.Dns.Resolve(url);
    return true;
  }
  
catch (System.Net.Sockets.SocketException se)
  {
    System.Diagnostics.Trace.Write(se.Message);
    
return false;
  }
}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-660393/,如需轉載,請註明出處,否則將追究法律責任。

相關文章