DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Check Remote File Exists
Related to: http://snippets.dzone.com/posts/show/10225
require 'rubygems' require 'rest-open-uri' def remote_file_exist?(url) open( url , :method => :head).status rescue false end





