# File lib/cgikit.rb, line 4704
        def bytedata( name )
                if filepath = path(name) then
                        data = CKByteData.new_with_file filepath
                        data.content_type = content_type filepath
                        data
                else
                        nil
                end
        end