C# 判斷遠端檔案是否存在
//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, false, null, null);
_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;
}
}
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, false, null, null);
_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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- golang判斷檔案是否存在Golang
- vc判斷檔案是否存在
- python 判斷檔案是否存在Python
- php下利用curl判斷遠端檔案是否存在的實現程式碼PHP
- java判斷檔案是否存在並建立檔案Java
- jquery怎麼樣判斷檔案是否存在jQuery
- js如何判斷指定的檔案是否存在JS
- python判斷檔案是否存在等操作Python
- shell 判斷檔案或路徑是否存在
- 判斷檔案中是否存在中文字元字元
- C語言判斷檔案是否存在,判斷檔案可讀可寫可執行C語言
- Python 判斷檔案是否存在的三種方法Python
- VBA判斷指定的資料夾或檔案是否存在
- 41:判斷元素是否存在
- Linux - 判斷檔案/目錄是否存在/具有許可權Linux
- C#之判斷確定檔案是否為程式集C#
- JavaScript 判斷函式是否存在JavaScript函式
- postgresql如何判斷表是否存在SQL
- jQuery如何判斷元素是否存在jQuery
- iOS判斷是否存在網路iOS
- 如何判斷Javascript物件是否存在JavaScript物件
- MySQL判斷表名是否存在MySql
- shell判斷檔案,目錄是否存在或者具有許可權【轉】
- 判斷ssh遠端命令是否執行結束
- c# winform 判斷資料夾是否存在,新建資料夾,判斷資料夾存不存在C#ORM
- Node判斷檔案是否連結
- 判斷objectStore物件倉庫是否存在Object物件
- js判斷dom節點是否存在JS
- 怎麼判斷mysql表是否存在MySql
- jQuery 判斷使用者是否存在jQuery
- Laravel 5 判斷條件是否存在Laravel
- jQuery 判斷頁面元素是否存在jQuery
- C語言判斷檔案存在和建立檔案C語言
- Python科研武器庫 - 檔案/路徑操作 - 判斷路徑是否存在Python
- XamarinEssentials教程首選項Preferences判斷專案是否存在
- Python判斷一個檔案中的字串是否存在於另外一個檔案中Python字串
- C# 判斷客戶端是否禁用Cookie的方法C#客戶端Cookie
- C#判斷字串是否合法C#字串