■アップロードするファイルの種類を取得する
		■書式
			
			print imgObj.content_type
		
			■説明
			
			アップロードするファイルの種類(Content Type)を取得するにはcontent_typeプロパティを参照します。
			■サンプル (CGI)
			
			#!/usr/bin/ruby
			require "cgi"
			formData = CGI.new
			print "Content-type: text/html\n\n"
			print "<html><head><title>Sample</title></head><body>"
			imgObj = formData['imgData'][0]
			print imgObj.content_type
			print "</body></html>"
			
		
			■サンプル (HTML)
			
			<html>
			<head>
			<title>Ruby CGI Sample</title>
			</head>
			<body>
			<form method="post" action="./sample.cgi" enctype="multipart/form-data">
			画像<input type="file" name="imgData"><br>
			
			<input type="submit" value="Upload">
			</form>
			</body>
			</html>