C#檢測上傳檔案的真實類型

來源:互聯網
上載者:User

有的時候需要檢測上傳檔案的真實類型,才能準確的判斷使用者上傳的檔案是否真的是需要過濾的檔案類型
大多數情況下我們都是用
Path.GetExtension(file.FileName) 
擷取檔案的副檔名,然後進行判斷檔案是否是我們需要過濾的檔案,但是這種方法只能得到表面上的副檔名,如果一些惡作劇的使用者故意把 text的檔案更改為
jpg 那麼Path.GetExtension(file.FileName) 擷取到的檔案類型就是 jpg 而不是text
用下面的方法會得到檔案的真實類型
private bool IsAllowedExtension(HttpPostedFile hifile)
        {
bool ret = false;

            System.IO.FileStream fs = new System.IO.FileStream(hifile.FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
            System.IO.BinaryReader r = new System.IO.BinaryReader(fs);
string fileclass = "";
byte buffer;
try
            {
                buffer = r.ReadByte();
                fileclass = buffer.ToString();
                buffer = r.ReadByte();
                fileclass += buffer.ToString();
            }
catch
            {
return false;
            }
            r.Close();
            fs.Close();
/*副檔名說明
             *7173        gif 
             *255216      jpg
             *13780       png
             *6677        bmp
             *239187      txt,aspx,asp,sql
             *208207      xls.doc.ppt
             *6063        xml
             *6033        htm,html
             *4742        js
             *8075        xlsx,zip,pptx,mmap,zip
             *8297        rar   
             *01          accdb,mdb
             *7790        exe,dll           
             *5666        psd 
             *255254      rdp 
             *10056       bt種子 
             *64101       bat 
*/

            String[] fileType = { "255216", "7173", "6677", "13780", "8297", "5549", "870", "87111", "8075" };

for (int i = 0; i < fileType.Length; i++)
            {
if (fileclass == fileType[i])
                {
                    ret = true;
break;
                }
            }
return ret;       
        }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.