Method: Web2Go::WebrickRequest#uploaded_file
- Defined in:
- lib/Web2Go/WebrickRequest.rb
#uploaded_file(name, pos = 0) ⇒ Object
65 66 67 68 69 70 71 |
# File 'lib/Web2Go/WebrickRequest.rb', line 65 def uploaded_file(name,pos=0) file = @request.query[name] if !file.nil? then return WebrickFile.new(file) end nil end |