Ruby删除IE所有cookie

require 'fileutils'
  class Cookies
    def delete(dir= "C:\\Documents and Settings\\#{ENV['USERNAME']}\\Cookies")
      # or wherever your cookies are downloaded to (can be browser specific)
      FileUtils.rm_rf dir
    end
  end
 

你可能感兴趣的:(cookie)