首页 > 代码库 > 判断远程文件是否存在

判断远程文件是否存在

public bool UriExists(string url)
        
{
            
try
            
{
                
new System.Net.WebClient().OpenRead(url);
                
return true;
            }

            
catch (System.Net.WebException)
            
{
                
return false;
            }

        }