# File lib/puppet/indirector/file_bucket_file/file.rb, line 36
36:     def head(request)
37:       checksum, files_original_path = request_to_checksum_and_path(request)
38:       dir_path = path_for(request.options[:bucket_path], checksum)
39: 
40:       ::File.exists?(::File.join(dir_path, 'contents')) and path_match(dir_path, files_original_path)
41:     end